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