{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load perms %} {% load plugins %} {% load i18n %} {% block content %}
{% trans "Cable" %}
{% trans "Type" %} {{ object.get_type_display|placeholder }}
{% trans "Status" %} {% badge object.get_status_display bg_color=object.get_status_color %}
{% trans "Tenant" %} {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
{% trans "Label" %} {{ object.label|placeholder }}
{% trans "Description" %} {{ object.description|placeholder }}
{% trans "Color" %} {% if object.color %}   {% else %} {{ ''|placeholder }} {% endif %}
{% trans "Length" %} {% if object.length %} {{ object.length|floatformat }} {{ object.get_length_unit_display }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
{% trans "Termination" %} A
{% include 'dcim/inc/cable_termination.html' with terminations=object.a_terminations %}
{% trans "Termination" %} B
{% include 'dcim/inc/cable_termination.html' with terminations=object.b_terminations %}
{% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}