{% extends "netbox_reorder_rack/rack.html" %} {% load perms %} {% load rack %} {% load i18n %} {% load static %} {% block head %} {{ block.super }} {{ reorder_rack_width_data|json_script:"netbox-utilities-reorder-rack-width-data" }} {% endblock %} {% block content %}

Front

{% include "netbox_utilities/reorder_rack_grid.html" with face="front" grid_id=0 %}

Back

{% include "netbox_utilities/reorder_rack_grid.html" with face="rear" grid_id=1 %}

Non-Racked Devices

{% for device in non_racked %}
{% if images and device.device_type.front_image %}{% if labels %}{{ device.name|default:device.device_type }}{% endif %}{% else %}{{ device.name|default:device.device_type }}{% endif %}
{% endfor %}
{% endblock %}