main_page.html 569 B

1234567891011121314151617181920212223242526272829303132333435
  1. {% import "macros.html" as macros %}
  2. <!DOCTYPE html>
  3. <head>
  4. <title>
  5. Hemiptera Bugtracker at {{DOMAIN}}
  6. </title>
  7. {{ macros.head() }}
  8. </head>
  9. <body>
  10. <header>
  11. {{ macros.h1(DOMAIN) }}
  12. <h2><a href="/" >List of projects</a></h2>
  13. </header>
  14. <table>
  15. <thead>
  16. <td>Name
  17. <td>Open bugs
  18. <td>Number of bugs
  19. </thead>
  20. {% for i in projects %}
  21. <tr>
  22. <td>
  23. <a href="{{ i.name }}"> {{ i.name }}</a>
  24. <td>
  25. {{ i.opencount }}
  26. <td>
  27. {{ i.count }}
  28. </tr>
  29. {% endfor %}
  30. </table>
  31. {{ macros.footer() }}
  32. </body>