{% extends 'generic/object.html' %} {% load buttons %} {% load helpers %} {% load perms %} {% load plugins %} {% block breadcrumbs %}
  • Cables
  • {{ object }}
  • {% endblock %} {% block buttons %} {% if request.user|can_change:object %} {% edit_button object %} {% endif %} {% if request.user|can_delete:object %} {% delete_button object %} {% endif %} {% endblock %} {% block content %}
    Cable
    Type {{ object.get_type_display|placeholder }}
    Status {{ object.get_status_display }}
    Label {{ object.label|placeholder }}
    Color {% if object.color %}   {% else %} {% endif %}
    Length {% if object.length %} {{ object.length }} {{ object.get_length_unit_display }} {% else %} {% endif %}
    {% include 'inc/custom_fields_panel.html' %} {% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='dcim:cable_list' %} {% plugin_left_page object %}
    Termination A
    {% include 'dcim/inc/cable_termination.html' with termination=object.termination_a %}
    Termination B
    {% include 'dcim/inc/cable_termination.html' with termination=object.termination_b %}
    {% plugin_right_page object %}
    {% plugin_full_width_page object %}
    {% endblock %}