diff --git a/netbox/templates/dcim/inc/consoleport.html b/netbox/templates/dcim/inc/consoleport.html index 5352c949c29..e5e13a08f2e 100644 --- a/netbox/templates/dcim/inc/consoleport.html +++ b/netbox/templates/dcim/inc/consoleport.html @@ -7,6 +7,7 @@ {{ cp.name }} + {% if cp.cs_port %} {{ cp.cs_port.device }} diff --git a/netbox/templates/dcim/inc/consoleserverport.html b/netbox/templates/dcim/inc/consoleserverport.html index d317cf5a49d..62563b8dc48 100644 --- a/netbox/templates/dcim/inc/consoleserverport.html +++ b/netbox/templates/dcim/inc/consoleserverport.html @@ -7,6 +7,7 @@ {{ csp.name }} + {% if csp.connected_console %} {{ csp.connected_console.device }} diff --git a/netbox/templates/dcim/inc/interface.html b/netbox/templates/dcim/inc/interface.html index 39f2947c527..9732e2641b5 100644 --- a/netbox/templates/dcim/inc/interface.html +++ b/netbox/templates/dcim/inc/interface.html @@ -16,6 +16,7 @@
{{ iface.member_interfaces.all|join:", "|default:"No members" }} {% endif %} + {{ iface.mac_address|default:"" }} {% if iface.is_lag %} LAG interface {% elif iface.is_virtual %} diff --git a/netbox/templates/dcim/inc/poweroutlet.html b/netbox/templates/dcim/inc/poweroutlet.html index 652ac8e479c..1eb6090379f 100644 --- a/netbox/templates/dcim/inc/poweroutlet.html +++ b/netbox/templates/dcim/inc/poweroutlet.html @@ -7,6 +7,7 @@ {{ po.name }} + {% if po.connected_port %} {{ po.connected_port.device }} diff --git a/netbox/templates/dcim/inc/powerport.html b/netbox/templates/dcim/inc/powerport.html index 785186670c3..202affa227a 100644 --- a/netbox/templates/dcim/inc/powerport.html +++ b/netbox/templates/dcim/inc/powerport.html @@ -7,6 +7,7 @@ {{ pp.name }} + {% if pp.power_outlet %} {{ pp.power_outlet.device }}