Back to Netbox

Rack Elevation List

netbox/templates/dcim/rack_elevation_list.html

4.6.11.6 KB
Original Source

{% extends 'generic/object_list.html' %} {% load helpers %} {% load static %} {% load i18n %} {% block title %}{% trans "Rack Elevations" %}{% endblock %} {% block controls %}

{% trans "View List" %}{% trans "Images and Labels" %}{% trans "Images only" %}{% trans "Labels only" %} {% trans "Front" %}{% trans "Rear" %}

{% trans "Sort By" %} {{ sort_display_name }} {% for sort_key, sort_display_name in sort_choices.items %} - {{ sort_display_name }} {% endfor %}

{% endblock %} {% block content %} {% if filter_form %} {% applied_filters model filter_form request.GET %} {% endif %} {# Rack elevations #} {% if page %} {% for rack in page %}

{{ rack.name }} {% if rack.role %}
{{ rack.role }} {% endif %} {% if rack.facility_id %}
{{ rack.facility_id }} {% endif %} {% include 'dcim/inc/rack_elevation.html' with object=rack face=rack_face %}

{{ rack.name }} {% if rack.facility_id %} ({{ rack.facility_id }}) {% endif %}

{% endfor %}

{% include 'inc/paginator.html' %} {% else %}

{% trans "No Racks Found" %}

{% endif %} {# Filter form #} {% if filter_form %} {% include 'inc/filter_list.html' %} {% endif %} {% endblock content %} {% block modals %}{% endblock %}