mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
9 lines
259 B
HTML
9 lines
259 B
HTML
|
|
{% extends 'generic/object.html' %}
|
||
|
|
|
||
|
|
{% block breadcrumbs %}
|
||
|
|
{{ block.super }}
|
||
|
|
{% if object.vrf %}
|
||
|
|
<li class="breadcrumb-item"><a href="{% url 'ipam:ipaddress_list' %}?vrf_id={{ object.vrf.pk }}">{{ object.vrf }}</a></li>
|
||
|
|
{% endif %}
|
||
|
|
{% endblock %}
|