From 00c444a2e42980004f0ebd0569992659c9ea8a88 Mon Sep 17 00:00:00 2001 From: Anthony Belhadj Date: Mon, 11 Nov 2024 17:02:54 +0100 Subject: [PATCH] Fix Exception display in RQ Task view --- netbox/templates/core/rq_task.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox/templates/core/rq_task.html b/netbox/templates/core/rq_task.html index baab5ff8d..9e7c3de99 100644 --- a/netbox/templates/core/rq_task.html +++ b/netbox/templates/core/rq_task.html @@ -104,7 +104,7 @@ {{ dependency_id }} {% endif %} - {% if exc_info %} + {% if job.exc_info %} {% trans "Exception" %}
{% if job.exc_info %}{{ job.exc_info|linebreaks }}{% endif %}