{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load plugins %} {% load i18n %} {% block title %}{{ object.manufacturer }} {{ object.model }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block extra_controls %} {% include 'dcim/inc/moduletype_buttons.html' %} {% endblock %} {% block content %}

{% trans "Module Type" %}

{% trans "Profile" %} {{ object.profile|linkify|placeholder }}
{% 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 %}

{% trans "Attributes" %}

{% if not object.profile %}
{% trans "No profile assigned" %}
{% elif object.attributes %} {% for k, v in object.attributes.items %} {% endfor %}
{{ k }} {{ v|placeholder }}
{% else %}
{% trans "None" %}
{% endif %}
{% 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 %}