{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load i18n %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %}
{% trans "Front Port" %}
{% trans "Device" %} {{ object.device|linkify }}
{% trans "Module" %} {{ object.module|linkify|placeholder }}
{% trans "Name" %} {{ object.name }}
{% trans "Label" %} {{ object.label|placeholder }}
{% trans "Type" %} {{ object.get_type_display }}
{% trans "Color" %} {% if object.color %}   {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Rear Port" %} {{ object.rear_port|linkify }}
{% trans "Rear Port Position" %} {{ object.rear_port_position }}
{% trans "Description" %} {{ object.description|placeholder }}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% trans "Connection" %}
{% if object.mark_connected %}
{% trans "Marked as Connected" %}
{% elif object.cable %}
{% trans "Cable" %} {{ object.cable|linkify }}
{% trans "Connection Status" %} {% if object.cable.status %} {{ object.cable.get_status_display }} {% else %} {{ object.cable.get_status_display }} {% endif %}
{% else %} {% endif %}
{% include 'dcim/inc/panels/inventory_items.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}