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.
40 lines
1.2 KiB
40 lines
1.2 KiB
{% extends "crud/form.html" %}
|
|
{% load i18n %}
|
|
{% load crispy_forms_tags %}
|
|
{% load common_tags %}
|
|
|
|
{% block extra_js %}
|
|
<script language="Javascript">
|
|
|
|
function compare(a, b) {
|
|
if (a.text < b.text)
|
|
return -1;
|
|
if (a.text > b.text)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
$(document).ready(function() {
|
|
$("#id_tipo_autor").change(function() {
|
|
$("#id_autor option").remove()
|
|
var selected = $("#id_tipo_autor").val();
|
|
if (selected !== undefined && selected !== null) {
|
|
$.getJSON("/api/autor?tipo=" + selected, function(data){
|
|
if (data) {
|
|
var results = data.results.sort(compare);
|
|
if (results.length > 1) {
|
|
$("#id_autor").append("<option>-----</option>");
|
|
}
|
|
$.each(results, function(idx, obj) {
|
|
$("#id_autor")
|
|
.append($("<option></option>")
|
|
.attr("value", obj.value)
|
|
.text(obj.text));
|
|
});
|
|
}
|
|
});
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
{% endblock %}
|
|
|