Fix Exception display in RQ Task view

This commit is contained in:
Anthony Belhadj 2024-11-11 17:02:54 +01:00
parent 494d410847
commit 00c444a2e4
No known key found for this signature in database
GPG Key ID: 7A95E5038C595A2A

View File

@ -104,7 +104,7 @@
<td><a href="{% url 'core:background_task' job.id %}">{{ dependency_id }}</a></td>
</tr>
{% endif %}
{% if exc_info %}
{% if job.exc_info %}
<tr>
<th scope="row">{% trans "Exception" %}</th>
<td><pre>{% if job.exc_info %}{{ job.exc_info|linebreaks }}{% endif %}</pre></td>