diff --git a/netbox/templates/dcim/cable_trace.html b/netbox/templates/dcim/cable_trace.html index fc637f9ef..1e7210e9a 100644 --- a/netbox/templates/dcim/cable_trace.html +++ b/netbox/templates/dcim/cable_trace.html @@ -48,21 +48,50 @@ {% endif %} - {% if not forloop.last %}
{% endif %} +
{% endfor %}
-
- {% if split_ends %} -

Trace Split

-

Select a termination to continue:

- - {% else %} + {% if split_ends %} +
+
+
+ Trace Split +
+
+ There are multiple possible paths from this point. Select a port to continue. +
+
+
+ + + + + + + + + + {% for termination in split_ends %} + + + + + + + {% endfor %} +
PortConnectedTypeDescription
{{ termination }} + {% if termination.cable %} + + {% else %} + + {% endif %} + {{ termination.get_type_display }}{{ termination.description|placeholder }}
+
+
+ {% else %} +

Trace completed!

- {% endif %} -
+
+ {% endif %}
{% endblock %}