utente.edit.logger.html 963 B

12345678910111213141516171819202122232425262728293031
  1. <div class="tab-pane fade active" id="logger-pane" role="tabpanel" aria-labelledby="logger-tab" tabindex="0">
  2. <div class='form-outline mb-3 text-center btn-primary h3'>
  3. Elenco Azioni Registrate
  4. </div>
  5. <div>
  6. <table class='table table-striped table-hover'>
  7. <thead class='thead-dark'>
  8. <tr>
  9. <th scope='col'>Data</th>
  10. <th scope='col'>Causale</th>
  11. <th scope='col'>Utente</th>
  12. <th scope='col'>Amministratore</th>
  13. <th scope='col'>documento</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {% for attivita in listaAttivita %}
  18. <tr>
  19. <td> {{ attivita.data | date:'d/m/Y H:i' }} </td>
  20. <td> {{ attivita.causale.nome }} </td>
  21. <td> {{ attivita.utente.nome }} </td>
  22. <td> {{ attivita.amministratore.username }}</td>
  23. <td> {{ attivita.documento.documento }}</td>
  24. </tr>
  25. {% endfor %}
  26. </tbody>
  27. </table>
  28. </div>
  29. </div>