{% extends 'dcim/rack/base.html' %} {% load buttons %} {% load helpers %} {% load static %} {% load plugins %} {% load i18n %} {% load mptt %} {% block content %}

{% trans "Rack" %}

{% trans "Region" %} {% nested_tree object.site.region %}
{% trans "Site" %} {{ object.site|linkify }}
{% trans "Location" %} {% nested_tree object.location %}
{% trans "Facility ID" %} {{ object.facility_id|placeholder }}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "Rack Type" %} {{ object.rack_type|linkify:"full_name"|placeholder }}
{% trans "Role" %} {{ object.role|linkify|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Serial Number" %} {{ object.serial|placeholder }}
{% trans "Asset Tag" %} {{ object.asset_tag|placeholder }}
{% trans "Airflow" %} {{ object.get_airflow_display|placeholder }}
{% trans "Space Utilization" %} {% utilization_graph object.get_utilization %}
{% trans "Power Utilization" %} {% utilization_graph object.get_power_utilization %}
{% include 'dcim/inc/panels/racktype_dimensions.html' %} {% include 'dcim/inc/panels/racktype_numbering.html' %}

{% trans "Weight" %}

{% trans "Rack Weight" %} {% if object.weight %} {{ object.weight|floatformat }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Maximum Weight" %} {% if object.max_weight %} {{ object.max_weight }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Total Weight" %} {% if object.total_weight %} {{ object.total_weight|floatformat }} {% trans "Kilograms" %} ({{ object.total_weight|kg_to_pounds|floatformat }} {% trans "Pounds" %}) {% else %} {{ ''|placeholder }} {% endif %}
{% 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 %}

{% trans "Front" %}

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

{% trans "Rear" %}

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