{% load i18n %}
{% load rack %}
{% load perms %}
{# Rendered as a TemplatePanel by ReorderView. The surrounding page chrome — breadcrumbs, #}
{# title and tabs — comes from the view's declarative layout, not from this template. #}
{% trans "Front" %}
{% include "netbox_reorder_rack/inc/rack_elevation.html" with units=front_units face="front" %}
{% trans "Back" %}
{% include "netbox_reorder_rack/inc/rack_elevation.html" with units=rear_units face="rear" %}
{% trans "Non-Racked Devices" %}
{% for device in non_racked %}
{% if not device.name %}
{{ device.device_type }}
{% else %}
{{ device.name }}
{% endif %}