{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load static %} {% block head %} {{ block.super }} {% endblock %} {% block content %}
Strand
Cable{{ object.cable|linkify }}
Tube{{ object.tube|linkify|default:"—" }}
Position{{ object.position }}
Colour{% badge object.get_color_display bg_color=object.get_color_color %}
Status{% badge object.get_status_display bg_color=object.get_status_color %}
Loss (dB){{ object.loss_db|floatformat:3 }}
{% comment %} The "Trace this core" button is rendered via the StrandTraceButton PluginTemplateExtension into the plugin_right_page slot below. The pre-v0.3.1 inline include was removed in v0.3.8 to avoid drawing the button twice once the plugin slots were wired. {% endcomment %} {% plugin_left_page object %}
Linked physical cable
{% if object.cable_link %}

This strand is mapped to dcim.Cable id={{ object.cable_link.pk }} ({{ object.cable_link.label|default:"unnamed" }}).

The legacy strand-as-cable representation is preserved for native interface.trace() support — both models agree.

{% else %}

No linked dcim.Cable row.

{% endif %}
{% include 'inc/panels/tags.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}