Sistema de Apoio ao Processo Legislativo
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

{% 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 %}