| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {% extends 'base.html' %}
- {% block top %}
- <p>
- utente che sta effettuando gli aggiornamenti {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
- </p>
- {% if dominio %}
- <p>
- Dominio su cui si sta' lavorando: {{ dominio.nome }}
- </p>
- {% endif %}
- {% if alias %}
- <p>
- si stanno effettuando aggiornamenti su: {{ user.mail }}@{{ user.domain.nome }}
- </p>
- {% endif %}
- {% endblock %}
- {% block body %}
- {% if nota %}
- <ul class='list-group'>
- <li class='list-group-item'>
- {{ nota.soggetto }}
- </li>
- <li class='list-group-item'>
- {{ nota.oggetto }}
- </li>
- <li class='list-group-item'>
- {{ nota.timestamp }}
- </li>
- </ul>
- {% else %}
- <table class='table'>
- <thead>
- <tr>
- <th scope='col'>Nota</th>
- <th scope='col'>Data</th>
- <th scope='col'>Livello</th>
- <th scope='col'>*</th>
- <th scope='col'>Attività</th>
- </tr>
- </thead>
- <tbody>
- {% for n in note %}
- <tr>
- <th scope='row'><a href={% url 'Note:NoteView' n.id %}>{{ n.soggetto }}</th>
- <td> {{ n.timestamp }} </td>
- <td> {{ n.livello.nome }} </td>
- </tr>
- {% endfor %}
- </tbody>
- {% endif %}
- {% endblock %}
|