|
@@ -12,7 +12,8 @@ function toggle(source) {
|
|
|
{% endblock %}
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
{% block body %}
|
|
|
- <form name="inputUtente" method="POST">
|
|
|
|
|
|
|
+ <form name="inputDocumenti" method="POST">
|
|
|
|
|
+ {% csrf_token %}
|
|
|
<div class='form-control'>
|
|
<div class='form-control'>
|
|
|
{% if "UTENTE.CREA" in permesso %}
|
|
{% if "UTENTE.CREA" in permesso %}
|
|
|
<button type='submit' class="btn btn-primary" name='scelta' value='Nuovo Dipendente'>Nuovo Dipendente</button>
|
|
<button type='submit' class="btn btn-primary" name='scelta' value='Nuovo Dipendente'>Nuovo Dipendente</button>
|
|
@@ -25,13 +26,14 @@ function toggle(source) {
|
|
|
Numero di dipendenti selezionati {{ numeroRecordAttuali }} su un totale di {{ numeroRecordAzienda }}.
|
|
Numero di dipendenti selezionati {{ numeroRecordAttuali }} su un totale di {{ numeroRecordAzienda }}.
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
- {% csrf_token %}
|
|
|
|
|
<table class='table table-striped table-hover'>
|
|
<table class='table table-striped table-hover'>
|
|
|
<thead class='thead-dark'>
|
|
<thead class='thead-dark'>
|
|
|
<tr>
|
|
<tr>
|
|
|
{% if "UTENTE.CREA" in permesso %}<th scope='col'>*</th>{% endif %}
|
|
{% if "UTENTE.CREA" in permesso %}<th scope='col'>*</th>{% endif %}
|
|
|
- <th scope='col'>Nome</th>
|
|
|
|
|
- <th scope='col'>Codice Fiscale</th>
|
|
|
|
|
|
|
+ <th scope='col'>Dipendente <button name='utDW' type="submit" class="btn btn-outline-primary btn-sm">↓</button>
|
|
|
|
|
+ <button name='utUP' type="submit" class="btn btn-outline-primary btn-sm">↑</button></th>
|
|
|
|
|
+ <th scope='col'>CF <button name='cfDW' type="submit" class="btn btn-outline-primary btn-sm">↓</button>
|
|
|
|
|
+ <button name="cfUP" type="submit" class="btn btn-outline-primary btn-sm">↑</button></th>
|
|
|
<th scope='col'>Sede</th>
|
|
<th scope='col'>Sede</th>
|
|
|
<th scope='col'>Data di Nascita</th>
|
|
<th scope='col'>Data di Nascita</th>
|
|
|
<th scope='col'>Luogo di Nascita</th>
|
|
<th scope='col'>Luogo di Nascita</th>
|
|
@@ -49,7 +51,6 @@ function toggle(source) {
|
|
|
</tr>
|
|
</tr>
|
|
|
</thead>
|
|
</thead>
|
|
|
<tbody>
|
|
<tbody>
|
|
|
- {% csrf_token %}
|
|
|
|
|
{% for uu in utenti %}
|
|
{% for uu in utenti %}
|
|
|
<tr>
|
|
<tr>
|
|
|
{% if "UTENTE.EDIT" in permesso %}
|
|
{% if "UTENTE.EDIT" in permesso %}
|