From 704a61184e9d87d0aad33b5f830e075dd7da9e4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20P=C3=A9rez-Cerezo?= Date: Fri, 6 Jul 2018 18:17:54 +0200 Subject: added templates --- templates/buglist.html | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 templates/buglist.html (limited to 'templates/buglist.html') diff --git a/templates/buglist.html b/templates/buglist.html new file mode 100644 index 0000000..3e69108 --- /dev/null +++ b/templates/buglist.html @@ -0,0 +1,48 @@ + + + + Hemiptera Bugtracker at {{DOMAIN}} + + + + + +
+

+ Hemiptera Bugtracker at {{DOMAIN}} +

+

+ Bugs in {{prname}} +

+
+ + + + {% for i in bugs %} + + + {% endfor %} +
Id + Name + Number of replies + Created + Last Reply + Status +
+ {{ i.id }} + + {{ i.subject }} + + {{ i.replies }} + + {{ i.nicecreated }} + + {{ i.nicereply }} + + {% if i.closed %} + closed + {% else %} + open + {% endif %} +
+ -- cgit v1.2.3