mirror of https://github.com/interlegis/sapl.git
Eduardo Edson Batista Cordeiro Alves
8 years ago
3 changed files with 41 additions and 2 deletions
@ -0,0 +1,25 @@ |
|||
{% extends "crud/form.html" %} |
|||
{% load i18n %} |
|||
{% load crispy_forms_tags %} |
|||
{% load common_tags %} |
|||
|
|||
{% block extra_js %} |
|||
|
|||
<script language="Javascript"> |
|||
|
|||
function recuperar_numero_ano() { |
|||
var tipo = $("#id_tipo").val() |
|||
|
|||
if (tipo) { |
|||
$.get("/materia/recuperar-materia",{tipo: tipo}, |
|||
function(data, status) { |
|||
$("#id_numero").val(data.numero); |
|||
$("#id_ano").val(data.ano); |
|||
console.log(data) |
|||
}); |
|||
} |
|||
} |
|||
$("#id_tipo").change(recuperar_numero_ano); |
|||
</script> |
|||
|
|||
{% endblock %} |
Loading…
Reference in new issue