{% extends '_base.html' %} {% load helpers %} {% block header %}
{% if perms.dcim.change_cable %} Edit this cable {% endif %} {% if perms.dcim.delete_cable %} Delete this cable {% endif %}

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

{% endblock %} {% block content %}
Cable
Type {{ cable.get_type_display }}
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 %}
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 %}
{% endblock %}