{% extends '_base.html' %} {% load helpers %} {% load render_table from django_tables2 %} {% block title %}{{ rack.site }} - Rack {{ rack.name }}{% endblock %} {% block content %}
Site | {{ rack.site }} |
Group | {% if rack.group %} {{ rack.group.name }} {% else %} None {% endif %} |
Facility ID | {% if rack.facility_id %} {{ rack.facility_id }} {% else %} N/A {% endif %} |
Tenant | {% if rack.tenant %} {{ rack.tenant }} {% else %} None {% endif %} |
Height | {{ rack.u_height }}U |
Devices | {{ rack.devices.count }} |
Created | {{ rack.created }} |
Last Updated | {{ rack.last_updated }} |
Name | Role | Type | Parent |
---|---|---|---|
{{ device.name }} | {{ device.device_role }} | {{ device.device_type }} | {% if device.parent_bay %}{{ device.parent_bay }}{% endif %} |