|
|
@ -4,6 +4,16 @@ |
|
|
|
{% block extra_js %} |
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
$(document).ready(function(){ |
|
|
|
if($("#id_data_envio").val() != ''){ |
|
|
|
$("#submit-id-excluir").val('Retornar proposição enviada'); |
|
|
|
$("#submit-id-salvar").val('Salvar proposição'); |
|
|
|
}else{ |
|
|
|
$("#submit-id-excluir").val('Excluir proposição'); |
|
|
|
$("#submit-id-salvar").val('Enviar proposição'); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
|
function disable_fields() { |
|
|
|
$("#id_tipo_materia").val(""); |
|
|
|
$("#id_numero_materia").val(""); |
|
|
@ -26,8 +36,7 @@ |
|
|
|
$("#id_tipo").change(function() { |
|
|
|
if ($("#id_tipo").val() == 9) { // parecer |
|
|
|
enable_fields(); |
|
|
|
} |
|
|
|
else { |
|
|
|
}else { |
|
|
|
disable_fields(); |
|
|
|
} |
|
|
|
}); |
|
|
|