mirror of
https://github.com/netbox-community/netbox.git
synced 2026-01-10 05:42:16 -06:00
24 lines
783 B
HTML
24 lines
783 B
HTML
{% extends 'generic/object.html' %}
|
|
{% load buttons %}
|
|
{% load helpers %}
|
|
{% load perms %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
{% if object.object %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'core:job_list' %}?object_type={{ object.object_type_id }}">{{ object.object|meta:"verbose_name_plural"|bettertitle }}</a>
|
|
</li>
|
|
{% with parent_jobs_viewname=object.object|viewname:"jobs" %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url parent_jobs_viewname pk=object.object.pk %}">{{ object.object }}</a>
|
|
</li>
|
|
{% endwith %}
|
|
{% else %}
|
|
<li class="breadcrumb-item">
|
|
<a href="{% url 'core:job_list' %}?name={{ object.name|urlencode }}">{{ object.name }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endblock breadcrumbs %}
|