1234567891011121314151617181920212223242526272829303132333435 |
- {% import "macros.html" as macros %}
- <!DOCTYPE html>
- <head>
- <title>
- Hemiptera Bugtracker at {{DOMAIN}}
- </title>
- {{ macros.head() }}
- </head>
- <body>
- <header>
- {{ macros.h1(DOMAIN) }}
- <h2><a href="/" >List of projects</a></h2>
- </header>
- <table>
- <thead>
- <td>Name
- <td>Open bugs
- <td>Number of bugs
- </thead>
- {% for i in projects %}
- <tr>
- <td>
- <a href="{{ i.name }}"> {{ i.name }}</a>
- <td>
- {{ i.opencount }}
- <td>
- {{ i.count }}
- </tr>
- {% endfor %}
- </table>
- {{ macros.footer() }}
- </body>
|