We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11cadf3 commit 3028f26Copy full SHA for 3028f26
netbox/templates/core/job.html
@@ -4,6 +4,18 @@
4
{% load perms %}
5
{% load i18n %}
6
7
+{% block breadcrumbs %}
8
+ {{ block.super }}
9
+ <li class="breadcrumb-item">
10
+ <a href="{% url 'core:job_list' %}?object_type={{ object.object_type_id }}">{{ object.object|meta:"verbose_name_plural"|bettertitle }}</a>
11
+ </li>
12
+ {% with parent_jobs_viewname=object.object|viewname:"jobs" %}
13
14
+ <a href="{% url parent_jobs_viewname pk=object.object.pk %}">{{ object.object }}</a>
15
16
+ {% endwith %}
17
+{% endblock breadcrumbs %}
18
+
19
{% block control-buttons %}
20
{% if request.user|can_delete:object %}
21
{% delete_button object %}
0 commit comments