utente.stato.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. {% endif %}
  45. {% if listanotass %}
  46. <div>Non sono stati caricati {{ listanotasslen }} dipendentii</div>
  47. <table class='table table-striped table-hover'>
  48. <thead class='thead-dark'>
  49. <tr>
  50. <th scope='col'>Dipendenti Non validi o non associabili</th>
  51. </tr>
  52. </thead>
  53. <tbody>
  54. {% for l in listanotass %}
  55. <tr>
  56. <td> {{ l }} </td>
  57. </tr>
  58. {% endfor %}
  59. </tbody>
  60. </table>
  61. {% endif %}
  62. <div class="modal-footer">
  63. <form name='SDCModal' method='POST'>
  64. {% csrf_token %}
  65. <button type="button" class="btn btn-primary" data-bs-dismiss="modal">Chiudi/Annulla</button>
  66. </form>
  67. </div>
  68. </div>
  69. </div>
  70. </div>
  71. <!-- end modal -->