Lista.Database.html 780 B

123456789101112131415161718192021222324252627282930313233343536
  1. {% extends 'base.html' %}
  2. {% load calctags %}
  3. {% block top %}
  4. {% endblock %}
  5. {% block body %}
  6. <br><br>
  7. <p>Lista database ordinati per Dominio di appartenenza<p>
  8. <table class='table table-striped table-hover'>
  9. <thead>
  10. <tr>
  11. <th scope='col'>Dominio</th>
  12. <th scope='col'>Database</th>
  13. <th scope='col'>Utente</th>
  14. <th scope='col'>Server</th>
  15. <th scope='col'>Ip</th>
  16. </tr>
  17. </thead>
  18. <tbody>
  19. {% for d in database %}
  20. <tr>
  21. <td scope='row'>{{ d.dominio.nome }}</td>
  22. <td scope='row'>{{ d.nome }}</td>
  23. <td scope='row'>{{ d.username }}</td>
  24. <td scope='row'>{{ d.server.nome }}</td>
  25. <th scope='row'>{{ d.server.ip }}</td>
  26. </tr>
  27. {% endfor %}
  28. </form>
  29. </tbody>
  30. {% endblock %}