| 12345678910111213141516171819202122232425262728293031 |
- <div class="tab-pane fade active" id="logger-pane" role="tabpanel" aria-labelledby="logger-tab" tabindex="0">
- <div class='form-outline mb-3 text-center btn-primary h3'>
- Elenco Azioni Registrate
- </div>
- <div>
- <table class='table table-striped table-hover'>
- <thead class='thead-dark'>
- <tr>
- <th scope='col'>Data</th>
- <th scope='col'>Causale</th>
- <th scope='col'>Utente</th>
- <th scope='col'>Amministratore</th>
- <th scope='col'>documento</th>
- </tr>
- </thead>
- <tbody>
- {% for attivita in listaAttivita %}
- <tr>
- <td> {{ attivita.data | date:'d/m/Y H:i' }} </td>
- <td> {{ attivita.causale.nome }} </td>
- <td> {{ attivita.utente.nome }} </td>
- <td> {{ attivita.amministratore.username }}</td>
- <td> {{ attivita.documento.documento }}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- </div>
|