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

{% trans "Chassis" %}

{% trans "Manufacturer" %} {{ object.manufacturer|linkify }}
{% trans "Model Name" %} {{ object.model }}
{{ object.slug }}
{% trans "Part Number" %} {{ object.part_number|placeholder }}
{% trans "Default Platform" %} {{ object.default_platform|linkify }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Height (U)" %} {{ object.u_height|floatformat }}
{% trans "Exclude From Utilization" %} {% checkmark object.exclude_from_utilization %}
{% trans "Full Depth" %} {% checkmark object.is_full_depth %}
{% trans "Weight" %} {% if object.weight %} {{ object.weight|floatformat }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Parent/Child" %} {{ object.get_subdevice_role_display|placeholder }}
{% trans "Airflow" %} {{ object.get_airflow_display|placeholder }}
{% trans "Front Image" %} {% if object.front_image %} {{ object.front_image.name }} {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Rear Image" %} {% if object.rear_image %} {{ object.rear_image.name }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/related_objects.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/comments.html' %} {% include 'inc/panels/image_attachments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}