|
|
@ -8,32 +8,6 @@ |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
{% block base_content %} |
|
|
{% block base_content %} |
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> |
|
|
|
|
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> |
|
|
|
|
|
<script> |
|
|
|
|
|
$( function() { |
|
|
|
|
|
$( "#sortable" ).sortable(); |
|
|
|
|
|
$( "#sortable" ).disableSelection(); |
|
|
|
|
|
} ); |
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
<script> |
|
|
|
|
|
$(function() { |
|
|
|
|
|
let revalue = () => { |
|
|
|
|
|
let aux = 0; |
|
|
|
|
|
$("#sortable li input").each((index,obj) => { |
|
|
|
|
|
obj.name = aux; |
|
|
|
|
|
aux++; |
|
|
|
|
|
}) |
|
|
|
|
|
$("#form").submit() |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("submit").onclick = revalue |
|
|
|
|
|
}); |
|
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<form id="form" method="post"> |
|
|
<form id="form" method="post"> |
|
|
{% csrf_token %} |
|
|
{% csrf_token %} |
|
|
<div class="container" style="margin-top20px; padding:30px;background-color: #364347; border-radius: 15px;"> |
|
|
<div class="container" style="margin-top20px; padding:30px;background-color: #364347; border-radius: 15px;"> |
|
|
@ -73,5 +47,25 @@ $(function() { |
|
|
|
|
|
|
|
|
</form> |
|
|
</form> |
|
|
|
|
|
|
|
|
|
|
|
{% endblock %} |
|
|
|
|
|
|
|
|
|
|
|
{% block extra_js %} |
|
|
|
|
|
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> |
|
|
|
|
|
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> |
|
|
|
|
|
<script> |
|
|
|
|
|
$(function() { |
|
|
|
|
|
$( "#sortable" ).sortable(); |
|
|
|
|
|
$( "#sortable" ).disableSelection(); |
|
|
|
|
|
let revalue = () => { |
|
|
|
|
|
let aux = 0; |
|
|
|
|
|
$("#sortable li input").each((index,obj) => { |
|
|
|
|
|
obj.name = aux; |
|
|
|
|
|
aux++; |
|
|
|
|
|
}) |
|
|
|
|
|
$("#form").submit() |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
document.getElementById("submit").onclick = revalue |
|
|
|
|
|
}); |
|
|
|
|
|
</script> |
|
|
{% endblock %} |
|
|
{% endblock %} |
|
|
|