{% extends 'generic/object_list.html' %} {% load helpers %} {% load static %} {% load i18n %} {% block title %}{% trans "Rack Elevations" %}{% endblock %} {% block controls %}
{% trans "View List" %}
{% endblock %} {% block content-wrapper %}
{% 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-wrapper %} {% block modals %}{% endblock %}