{% block title %}Proposed Cable Trace{% endblock %}
{% endblock %}
{% block content %}
{% for e in path %}
{% if e.attachment_a %}
{% include 'dcim/trace/termination.html' with termination=e.attachment_a %}
{% endif %}
{% if e.device %}
{% include 'dcim/trace/device.html' with device=e.device %}
{% endif %}
{% if e.attachment_b %}
{% include 'dcim/trace/termination.html' with termination=e.attachment_b %}
{% endif %}
{% if e.cable %}
{% include 'dcim/trace/cable.html' with cable=e.cable %}
{% endif %}
{% if e.needed_cable %}
{% include 'nautobot_cable_utils/trace/needed_cable.html' with cable=e.needed_cable %}
{% endif %}
{% endfor %}