{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load static %} {% load plugins %} {% load i18n %} {% load mptt %} {% block content %}

{% trans "Rack Type" %}

{% trans "Manufacturer" %} {{ object.manufacturer|linkify }}
{% trans "Model" %} {{ object.model }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Airflow" %} {{ object.get_airflow_display|placeholder }}
{% include 'dcim/inc/panels/racktype_dimensions.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% 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 %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/related_objects.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}