diff --git a/CHANGELOG.md b/CHANGELOG.md index 028822206..c4a627c5a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -181,6 +181,7 @@ scheme. This change was introuced in django-cors-headers 3.0. ## Bug Fixes * [#2968](https://github.com/digitalocean/netbox/issues/2968) - Correct API documentation for SerializerMethodFields +* [#3176](https://github.com/digitalocean/netbox/issues/3176) - Add cable trace button for console server ports and power outlets * [#3231](https://github.com/digitalocean/netbox/issues/3231) - Fixed cosmetic error indicating a missing schema migration * [#3239](https://github.com/digitalocean/netbox/issues/3239) - Corrected count of tags reported via API diff --git a/netbox/templates/dcim/inc/consoleserverport.html b/netbox/templates/dcim/inc/consoleserverport.html index d1dce00d3..8e5666852 100644 --- a/netbox/templates/dcim/inc/consoleserverport.html +++ b/netbox/templates/dcim/inc/consoleserverport.html @@ -20,9 +20,12 @@ {# Cable #} - + {% if csp.cable %} {{ csp.cable }} + + + {% else %} {% endif %} diff --git a/netbox/templates/dcim/inc/interface.html b/netbox/templates/dcim/inc/interface.html index fec69c875..ab57d2ff4 100644 --- a/netbox/templates/dcim/inc/interface.html +++ b/netbox/templates/dcim/inc/interface.html @@ -52,7 +52,7 @@ {% else %} - — + {% endif %} diff --git a/netbox/templates/dcim/inc/poweroutlet.html b/netbox/templates/dcim/inc/poweroutlet.html index 512f75a61..6c2e70373 100644 --- a/netbox/templates/dcim/inc/poweroutlet.html +++ b/netbox/templates/dcim/inc/poweroutlet.html @@ -31,9 +31,12 @@ {# Cable #} - + {% if po.cable %} {{ po.cable }} + + + {% else %} {% endif %}