mirror of https://github.com/interlegis/sapl.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
559 B
17 lines
559 B
{% extends "protocoloadm/protocoloadm_detail.html" %}
|
|
{% load i18n %}
|
|
|
|
{% block extra_js %}
|
|
<script language="Javascript">
|
|
$(document).ready(function() {
|
|
|
|
$("input[name=data_hora_manual]").change(function(event) {
|
|
if (this.value === 'True' && this.checked)
|
|
$("#protocolo_data_hora_manual").show();
|
|
else if (this.value === 'False' && this.checked)
|
|
$("#protocolo_data_hora_manual").hide();
|
|
});
|
|
$("input[name=data_hora_manual]").trigger('change')
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|