{% extends 'generic/object_detail.html' %} {% load buttons %} {% load helpers %} {% load plugins %} {% block extra_breadcrumbs %}
  • {{ object.manufacturer }}
  • {% endblock extra_breadcrumbs %} {% block extra_buttons %} {% if perms.dcim.change_devicetype %}
    {% endif %} {% endblock extra_buttons %} {% block title %}{{ object.manufacturer }} {{ object.model }}{% endblock title %} {% block extra_nav_tabs %} {% endblock extra_nav_tabs %} {% block content_left_page %}
    Chassis
    Manufacturer {{ object.manufacturer }}
    Device Family {{ object.device_family | hyperlinked_object }}
    Model Name {{ object.model }}
    Part Number {{ object.part_number|placeholder }}
    Height (U) {{ object.u_height }}
    Full Depth {{ object.is_full_depth | render_boolean }}
    Parent/Child {{ object.get_subdevice_role_display|placeholder }}
    Front Image {% if object.front_image %} {{ object.front_image.name }} {% else %} {% endif %}
    Rear Image {% if object.rear_image %} {{ object.rear_image.name }} {% else %} {% endif %}
    Device Instances {{ instance_count }}
    {% endblock content_left_page %} {% block content_right_page %}
    Comments
    {% if object.comments %} {{ object.comments|render_markdown }} {% else %} None {% endif %}
    {% if object.software_image_files.count %} {% include 'panel_table.html' with table=software_image_files_table heading='Software Image Files' %} {% endif %} {% endblock content_right_page %} {% block extra_tab_content %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=interface_table title='Interfaces' tab='interfaces' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=front_port_table title='Front Ports' tab='frontports' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=rear_port_table title='Rear Ports' tab='rearports' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=consoleport_table title='Console Ports' tab='consoleports' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=consoleserverport_table title='Console Server Ports' tab='consoleserverports' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=powerport_table title='Power Ports' tab='powerports' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=poweroutlet_table title='Power Outlets' tab='poweroutlets' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=devicebay_table title='Device Bays' tab='devicebays' %}
    {% include 'dcim/inc/devicetype_component_table.html' with table=modulebay_table title='Module Bays' tab='modulebays' %}
    {% endblock extra_tab_content %}