Skip to content

Commit 7ca4342

Browse files
authored
Fixes #20721: Fix breadcrumb link on task detail page (#20724)
1 parent 70bc1c2 commit 7ca4342

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/templates/core/rq_task.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
{% block breadcrumbs %}
88
<li class="breadcrumb-item"><a href="{% url 'core:background_queue_list' %}">{% trans 'Background Tasks' %}</a></li>
9-
<li class="breadcrumb-item"><a href="{% url 'core:background_task_list' queue_index=queue_index status=job.get_status %}">{{ queue.name }}</a></li>
9+
<li class="breadcrumb-item"><a href="{% url 'core:background_task_list' queue_index=queue_index status=job.get_status.value %}">{{ queue.name }}</a></li>
1010
{% endblock breadcrumbs %}
1111

1212
{% block title %}{% trans "Job" %} {{ job.id }}{% endblock %}

0 commit comments

Comments
 (0)