{% extends 'dcim/rack/base.html' %} {% load buttons %} {% load helpers %} {% load static %} {% load plugins %} {% block content %}
Rack
Site {% if object.site.region %} {{ object.site.region|linkify }} / {% endif %} {{ object.site|linkify }}
Location {% if object.location %} {% for location in object.location.get_ancestors %} {{ location|linkify }} / {% endfor %} {{ object.location|linkify }} {% else %} {{ ''|placeholder }} {% endif %}
Facility ID {{ object.facility_id|placeholder }}
Tenant {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
Status {% badge object.get_status_display bg_color=object.get_status_color %}
Role {{ object.role|linkify|placeholder }}
Description {{ object.description|placeholder }}
Serial Number {{ object.serial|placeholder }}
Asset Tag {{ object.asset_tag|placeholder }}
Space Utilization {% utilization_graph object.get_utilization %}
Power Utilization {% utilization_graph object.get_power_utilization %}
Dimensions
Type {% if object.type %} {{ object.get_type_display }} {% else %} {{ ''|placeholder }} {% endif %}
Width {{ object.get_width_display }}
Height {{ object.u_height }}U ({% if object.desc_units %}descending{% else %}ascending{% endif %})
Outer Width {% if object.outer_width %} {{ object.outer_width }} {{ object.get_outer_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
Outer Depth {% if object.outer_depth %} {{ object.outer_depth }} {{ object.get_outer_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
Mounting Depth {% if object.mounting_depth %} {{ object.mounting_depth }} Millimeters {% else %} {{ ''|placeholder }} {% endif %}
Rack Weight {% if object.weight %} {{ object.weight|floatformat }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
Maximum Weight {% if object.max_weight %} {{ object.max_weight }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
Total Weight {{ object.total_weight|floatformat }} Kilograms ({{ object.total_weight|kg_to_pounds|floatformat }} Pounds)
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/image_attachments.html' %} {% plugin_left_page object %}

Front

{% include 'dcim/inc/rack_elevation.html' with face='front' extra_params=svg_extra %}

Rear

{% include 'dcim/inc/rack_elevation.html' with face='rear' extra_params=svg_extra %}
{% include 'inc/panels/related_objects.html' %} {% include 'dcim/inc/nonracked_devices.html' %} {% include 'inc/panels/contacts.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}