summaryrefslogtreecommitdiff
path: root/templates/main_page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/main_page.html')
-rw-r--r--templates/main_page.html5
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/main_page.html b/templates/main_page.html
index e32cfd4..dabb1ee 100644
--- a/templates/main_page.html
+++ b/templates/main_page.html
@@ -11,6 +11,7 @@
<table>
<thead>
<td>Name
+ <td>Open bugs
<td>Number of bugs
</thead>
{% for i in projects %}
@@ -18,7 +19,9 @@
<td>
<a href="{{ i.name }}"> {{ i.name }}</a>
<td>
- {{ i.count }}
+ {{ i.opencount }}
+ <td>
+ {{ i.count }}
</tr>
{% endfor %}
</table>