utente.stato.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <!-- Modal -->
  2. <div class="modal fade" id="StatoDocumentiCaricatiId" tabindex="-1" role="dialog" aria-labelledby="StatoDocumentiCaricati" aria-hidden="false">
  3. <div class="modal-dialog modal-lg" role="document">
  4. <div class="modal-content">
  5. <div class="modal-header">
  6. <h5 class="modal-title" id="SdcLabel">Stato Dipendenti Caricati</h5>
  7. </div>
  8. <div class="modal-body">
  9. <div>Totale dei record analizzati: {{ count }}</div>
  10. {% if listaok %}
  11. <div>Sono stati caricati {{ listaoklen }} dipendenti</div>
  12. <table class='table table-striped table-hover'>
  13. <thead class='thead-dark'>
  14. <tr>
  15. <th scope='col'>Dipendenti caricato con successo</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for l in listaok %}
  20. <tr>
  21. <td> {{ l }} </td>
  22. </tr>
  23. {% endfor %}
  24. </tbody>
  25. </table>
  26. {% endif %}
  27. <div><br></div>
  28. {% if listanotok %}
  29. <div>Sono stati rifiutati {{ listanotoklen }} dipendentii</div>
  30. <table class='table table-striped table-hover'>
  31. <thead class='thead-dark'>
  32. <tr>
  33. <th scope='col'>Dipendenti non caricati perche già presente</th>
  34. </tr>
  35. </thead>
  36. <tbody>
  37. {% for l in listanotok %}
  38. <tr>
  39. <td> {{ l }} </td>
  40. </tr>
  41. {% endfor %}
  42. </tbody>
  43. </table>
  44. <div>Non sono stati caricati {{ listanotasslen }} dipendentii</div>
  45. <table class='table table-striped table-hover'>
  46. <thead class='thead-dark'>
  47. <tr>
  48. <th scope='col'>Dipendenti Non validi o non associabili</th>
  49. </tr>
  50. </thead>
  51. <tbody>
  52. {% for l in listanotass %}
  53. <tr>
  54. <td> {{ l }} </td>
  55. </tr>
  56. {% endfor %}
  57. </tbody>
  58. </table>
  59. {% endif %}
  60. <div class="modal-footer">
  61. <form name='SDCModal' method='POST'>
  62. {% csrf_token %}
  63. <button type="button" class="btn btn-primary" data-bs-dismiss="modal">Chiudi/Annulla</button>
  64. </form>
  65. </div>
  66. </div>
  67. </div>
  68. </div>
  69. <!-- end modal -->