summaryrefslogtreecommitdiff
path: root/templates/main_page.html
blob: f7ffbe37b429ec8e1489a8736a76df6fab37ccbd (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
{% 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>
</body>