diff --git a/netbox/templates/dcim/inc/endpoint_connection.html b/netbox/templates/dcim/inc/endpoint_connection.html
index 1c25a0e28..3169d2ffc 100644
--- a/netbox/templates/dcim/inc/endpoint_connection.html
+++ b/netbox/templates/dcim/inc/endpoint_connection.html
@@ -1,4 +1,4 @@
-{% if path %}
+{% if path.destination_id %}
{% with endpoint=path.destination %}
{{ endpoint.parent }} |
{{ endpoint }} |
diff --git a/netbox/templates/dcim/inc/frontport.html b/netbox/templates/dcim/inc/frontport.html
index f267479f3..d362b6003 100644
--- a/netbox/templates/dcim/inc/frontport.html
+++ b/netbox/templates/dcim/inc/frontport.html
@@ -24,7 +24,7 @@
{# Description #}
{{ frontport.description|placeholder }} |
- {# Cable/connection #}
+ {# Cable #}
{% if frontport.cable %}
{{ frontport.cable }}
diff --git a/netbox/templates/dcim/inc/rearport.html b/netbox/templates/dcim/inc/rearport.html
index c1e5482d0..ce6edc883 100644
--- a/netbox/templates/dcim/inc/rearport.html
+++ b/netbox/templates/dcim/inc/rearport.html
@@ -23,7 +23,7 @@
{# Description #}
| {{ rearport.description|placeholder }} |
- {# Cable/connection #}
+ {# Cable #}
{% if rearport.cable %}
{{ rearport.cable }}
|