From 3028f262ccb7cc349cd275235a4963117bf5f9d0 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Thu, 18 Jul 2024 21:32:03 -0400 Subject: [PATCH] Closes #16943: Expand navigation breadcrumbs on job view to include parent object --- netbox/templates/core/job.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/netbox/templates/core/job.html b/netbox/templates/core/job.html index 1c67791b87c..002ed92b56b 100644 --- a/netbox/templates/core/job.html +++ b/netbox/templates/core/job.html @@ -4,6 +4,18 @@ {% load perms %} {% load i18n %} +{% block breadcrumbs %} + {{ block.super }} + + {% with parent_jobs_viewname=object.object|viewname:"jobs" %} + + {% endwith %} +{% endblock breadcrumbs %} + {% block control-buttons %} {% if request.user|can_delete:object %} {% delete_button object %}