{% extends 'dcim/device_component.html' %} {% load helpers %} {% load plugins %} {% block breadcrumbs %} {{ block.super }}
  • Front Ports
  • {{ object }}
  • {% endblock %} {% block content %}
    Front Port
    Device {{ object.device }}
    Name {{ object.name }}
    Label {{ object.label|placeholder }}
    Type {{ object.get_type_display }}
    Rear Port {{ object.rear_port }}
    Rear Port Position {{ object.rear_port_position }}
    Description {{ object.description|placeholder }}
    {% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all %} {% 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 %}