{% extends 'registration/base_custom.html' %} {% block title %}Admin - Tipo Documenti{% endblock %} {% block nav %} {% endblock %} {% block content %}
{% csrf_token %}
add
{% endblock %} {%block script%} $(document).ready(function(){ $('.collapsible').collapsible(); $('.tooltipped').tooltip(); $('.modal').modal(); {% if error %} M.toast({html: '{{ error_text}}', classes: 'orange'}) {% endif %} }); function send(id) { var form = document.getElementById('selection') var action = document.getElementById('action') action.setAttribute('value', id); form.submit() } $('#select-all').click(function(event) { if(this.checked) { // Iterate each checkbox $(':checkbox').each(function() { this.checked = true; }); } else { $(':checkbox').each(function() { this.checked = false; }); } }); {% endblock %}