mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
{% extends 'generic/object.html' %}
|
|
|
|
{% block title %}Rack {{ object }}{% endblock %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
<li class="breadcrumb-item"><a href="{% url 'dcim:rack_list' %}?site_id={{ object.site.pk }}">{{ object.site }}</a></li>
|
|
{% if object.location %}
|
|
{% for location in object.location.get_ancestors %}
|
|
<li class="breadcrumb-item"><a href="{% url 'dcim:rack_list' %}?location_id={{ location.pk }}">{{ location }}</a></li>
|
|
{% endfor %}
|
|
<li class="breadcrumb-item"><a href="{% url 'dcim:rack_list' %}?location_id={{ object.location.pk }}">{{ object.location }}</a></li>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extra_controls %}
|
|
<a {% if prev_rack %}href="{% url 'dcim:rack' pk=prev_rack.pk %}{% endif %}" class="btn btn-sm btn-primary{% if not prev_rack %} disabled{% endif %}">
|
|
<i class="mdi mdi-chevron-left" aria-hidden="true"></i> Previous
|
|
</a>
|
|
<a {% if next_rack %}href="{% url 'dcim:rack' pk=next_rack.pk %}{% endif %}" class="btn btn-sm btn-primary{% if not next_rack %} disabled{% endif %}">
|
|
<i class="mdi mdi-chevron-right" aria-hidden="true"></i> Next
|
|
</a>
|
|
{% endblock %}
|