From 440e10d0db068d0472a9e98db04ef922219fd0e6 Mon Sep 17 00:00:00 2001 From: Ernest Feret Date: Wed, 1 Jul 2020 09:50:25 +0200 Subject: [PATCH] show jobs when failed queue available --- rq_mantis/templates/queue.html | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/rq_mantis/templates/queue.html b/rq_mantis/templates/queue.html index 2f49ad0..0ded05d 100644 --- a/rq_mantis/templates/queue.html +++ b/rq_mantis/templates/queue.html @@ -74,7 +74,19 @@

Running jobs

{% endfor %} - + {% elif running_jobs %} +

Running jobs

+ {% for job_id in running_jobs %} +
+ + + + + + +
{{ job_id }}
+
+ {% endfor %} {% else %}

No jobs in queue

{% endif %}