{% extends 'dcim/device_component.html' %} {% load helpers %} {% load plugins %} {% block content %}
Front Port
Device {{ object.device }}
Name {{ object.name }}
Label {{ object.label|placeholder }}
Type {{ object.get_type_display }}
Color  
Rear Port {{ object.rear_port }}
Rear Port Position {{ object.rear_port_position }}
Description {{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
Connection
{% if object.mark_connected %}
Marked as Connected
{% elif object.cable %}
Cable {{ object.cable }}
Connection Status {% if object.cable.status %} {{ object.cable.get_status_display }} {% else %} {{ object.cable.get_status_display }} {% endif %}
{% else %}
Not Connected {% if perms.dcim.add_cable %} {% endif %}
{% endif %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}