diff --git a/netbox/templates/dcim/inc/consoleport.html b/netbox/templates/dcim/inc/consoleport.html index 6e115ad0d..184d596dd 100644 --- a/netbox/templates/dcim/inc/consoleport.html +++ b/netbox/templates/dcim/inc/consoleport.html @@ -9,7 +9,10 @@
{% with cable=pp.get_connected_cable %} {% if cable %} - via {{ cable }} + Cable {{ cable }} + {% if cable.far_end != pp.connected_endpoint %} + to {{ cable.far_end.device }} {{ cable.far_end }} + {% endif %} {% endif %} {% endwith %} |