blob: ed1867879056e5e15d664d3fa2471690025f46e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
{% 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>
|