From: Michael Tremer Date: Fri, 12 May 2023 23:28:16 +0000 (+0000) Subject: builds: Move bug list into the header X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2987029cf28b3d479d9875ac89b220d8e76285ff;p=pbs.git builds: Move bug list into the header Signed-off-by: Michael Tremer --- diff --git a/src/templates/builds/show.html b/src/templates/builds/show.html index 553375bf..16b15601 100644 --- a/src/templates/builds/show.html +++ b/src/templates/builds/show.html @@ -61,23 +61,28 @@
-
- {# Scratch Build #} - {% if build.owner %} - {% if build.message %} - {% module Text(build.message) %} - {% else %} -

- {{ _("No Message") }} -

- {% end %} - - {# Commit Message #} - {% elif build.commit %} - {% module CommitMessage(build.commit) %} - + {# Scratch Build #} + {% if build.owner %} + {% if build.message %} + {% module Text(build.message) %} + {% else %} +

+ {{ _("No Message") }} +

{% end %} -
+ + {# Commit Message #} + {% elif build.commit %} + {% module CommitMessage(build.commit) %} + + {% end %} + + {# Bugs #} + {% if bugs %} +
{{ _("Fixed Bugs") }}
+ + {% module BugsList(bugs) %} + {% end %}
@@ -123,17 +128,6 @@
- {# List any fixed bugs #} - {% if bugs %} -
-
-
{{ _("Fixed Bugs") }}
- - {% module BugsList(bugs) %} -
-
- {% end %} - {% if build.jobs %}