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

No Racks Found

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