summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-06 22:54:07 +0200
committerGabriel Pérez-Cerezo <gabriel@gpcf.eu>2018-07-06 22:54:07 +0200
commit5fe8f5636768201db4703124aefd1378871c8429 (patch)
tree44e85f6f622ef8a0e0494f628f04bb58639d603a /templates
parent704a61184e9d87d0aad33b5f830e075dd7da9e4d (diff)
downloadhemiptera-5fe8f5636768201db4703124aefd1378871c8429.tar.gz
hemiptera-5fe8f5636768201db4703124aefd1378871c8429.tar.bz2
hemiptera-5fe8f5636768201db4703124aefd1378871c8429.zip
solve #8, #16
Diffstat (limited to 'templates')
-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>