securityrowlist.html 653 B

1234567891011121314151617181920212223242526272829
  1. {% extends 'base.html' %}
  2. {% block top %}
  3. <p>
  4. utente che sta effettuando gli aggiornamenti {{ utenteautorizzato.mail }}@{{ utenteautorizzato.domain.nome }}
  5. </p>
  6. {% endblock %}
  7. {% block body %}
  8. <table class='table'>
  9. <thead>
  10. <tr>
  11. <th scope='col'>#</th>
  12. <th scope='col'>O</th>
  13. <th scope='col'>*</th>
  14. </tr>
  15. </thead>
  16. <tbody>
  17. {% for r in righe %}
  18. <tr>
  19. <th scope='row'><a href='#' %}>{{ r.id }}</a></th>
  20. <td>{{ r.securityoptions.nome }}</td>
  21. <td>{% if r.enabled %}*{% else %}-{% endif %}</td>
  22. </tr>
  23. {% endfor %}
  24. </tbody>
  25. {% endblock %}