| 1234567891011121314151617181920212223242526272829 |
- {% extends 'base.html' %}
- {% block top %}
- <p>
- utente che sta effettuando gli aggiornamenti {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
- </p>
- {% endblock %}
- {% block body %}
- <table class='table'>
- <thead>
- <tr>
- <th scope='col'>#</th>
- <th scope='col'>O</th>
- <th scope='col'>*</th>
- </tr>
- </thead>
- <tbody>
- {% for r in righe %}
- <tr>
- <th scope='row'><a href='#' %}>{{ r.id }}</a></th>
- <td>{{ r.securityoptions.nome }}</td>
- <td>{% if r.enabled %}*{% else %}-{% endif %}</td>
- </tr>
- {% endfor %}
- </tbody>
- {% endblock %}
|