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

{% trans "Module Type" %}

{% trans "Manufacturer" %} {{ object.manufacturer|linkify }}
{% trans "Model Name" %} {{ object.model }}
{% trans "Part Number" %} {{ object.part_number|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Airflow" %} {{ object.get_airflow_display|placeholder }}
{% trans "Weight" %} {% if object.weight %} {{ object.weight|floatformat }} {{ object.get_weight_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% include 'inc/panels/related_objects.html' %} {% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/image_attachments.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}