From: Michael Tremer Date: Wed, 19 Oct 2022 02:27:37 +0000 (+0000) Subject: web: Refactor bugs list X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85de2a7c97ca63f6d8da3381d7b20d255994ca9e;p=pbs.git web: Refactor bugs list Signed-off-by: Michael Tremer --- diff --git a/src/templates/bugs/modules/list.html b/src/templates/bugs/modules/list.html index 378b87dc..bfb8b474 100644 --- a/src/templates/bugs/modules/list.html +++ b/src/templates/bugs/modules/list.html @@ -1,23 +1,28 @@ - - - {% for bug in bugs %} - - +{% for bug in bugs %} +
+
+

+ {% if bug.creator %} + + {% end %} +

+
-
- - {% end %} - -
- {{ bug }} - - {{ bug.summary }} +
+

+ {{ bug }} ‐ + {{ bug.summary }} + {{ bug.creator }} + {{ locale.format_date(bug.created_at, shorter=True) }} -
+
- {{ bug.status }} {% if bug.resolution %}{{ bug.resolution }}{% end %} + {{ bug.status }} {% if bug.resolution %}{{ bug.resolution }}{% end %} - {% if bug.assignee %} - ‐ {% module LinkToUser(bug.assignee) %} - {% end %} -

+ {% if bug.assignee %} + ‐ {% module LinkToUser(bug.assignee) %} + {% end %} +

+ + +{% end %}