diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-06 22:54:07 +0200 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-07-06 22:54:07 +0200 |
commit | 5fe8f5636768201db4703124aefd1378871c8429 (patch) | |
tree | 44e85f6f622ef8a0e0494f628f04bb58639d603a /templates/main_page.html | |
parent | 704a61184e9d87d0aad33b5f830e075dd7da9e4d (diff) | |
download | hemiptera-5fe8f5636768201db4703124aefd1378871c8429.tar.gz hemiptera-5fe8f5636768201db4703124aefd1378871c8429.tar.bz2 hemiptera-5fe8f5636768201db4703124aefd1378871c8429.zip |
solve #8, #16
Diffstat (limited to 'templates/main_page.html')
-rw-r--r-- | templates/main_page.html | 5 |
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> |