summaryrefslogtreecommitdiff
path: root/templates/main_page.html
blob: dabb1ee48b54381d75dc4b43ebf153941d2230f9 (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
<!DOCTYPE html>
<head>
  <title>
    Hemiptera Bugtracker at {{DOMAIN}}
  </title>
  <meta charset="utf-8">
  <link rel="stylesheet" type="text/css" href="/styles.css" >
</head>
<body>
  List of projects
  <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>