From 65815c248585dbd546418688eb3eca1c5c972983 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 11 Feb 2025 18:54:19 +0000 Subject: [PATCH] jobs: Split the icon into a separate element Signed-off-by: Michael Tremer --- src/templates/jobs/macros.html | 50 ++++++++++++++++------------------ 1 file changed, 24 insertions(+), 26 deletions(-) diff --git a/src/templates/jobs/macros.html b/src/templates/jobs/macros.html index 935b9c68..b27e49dd 100644 --- a/src/templates/jobs/macros.html +++ b/src/templates/jobs/macros.html @@ -188,33 +188,31 @@ - - {% if job.is_running() %} - - - - {% elif job.is_queued() %} - - - - {% elif job.has_failed() %} - - - - {% elif job.is_aborted() %} - - - - {% elif job.has_finished() %} - - - - {% endif %} - - - {{ job }} + {% if job.is_running() %} + + - + {% elif job.is_queued() %} + + + + {% elif job.has_failed() %} + + + + {% elif job.is_aborted() %} + + + + {% elif job.has_finished() %} + + + + {% endif %} + + + + {{ job }} -- 2.47.3