{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons cable %} {% if perms.dcim.change_cable %} {% edit_button cable %} {% endif %} {% if perms.dcim.delete_cable %} {% delete_button cable %} {% endif %}

{% block title %}Cable {{ cable }}{% endblock %}

{% include 'inc/created_updated.html' with obj=cable %}
{% custom_links cable %}
{% endblock %} {% block content %}
Cable
Type {{ cable.get_type_display|placeholder }}
Status {{ cable.get_status_display }}
Label {{ cable.label|placeholder }}
Color {% if cable.color %}   {% else %} {% endif %}
Length {% if cable.length %} {{ cable.length }} {{ cable.get_length_unit_display }} {% else %} {% endif %}
{% include 'extras/inc/tags_panel.html' with tags=cable.tags.all url='dcim:cable_list' %} {% plugin_left_page cable %}
Termination A
{% include 'dcim/inc/cable_termination.html' with termination=cable.termination_a %}
Termination B
{% include 'dcim/inc/cable_termination.html' with termination=cable.termination_b %}
{% plugin_right_page cable %}
{% plugin_full_width_page cable %}
{% endblock %}