diff --git a/docs/release-notes/version-3.3.md b/docs/release-notes/version-3.3.md index 6d2bb3b5c..4b7b76270 100644 --- a/docs/release-notes/version-3.3.md +++ b/docs/release-notes/version-3.3.md @@ -15,6 +15,7 @@ * [#10435](https://github.com/netbox-community/netbox/issues/10435) - Fix exception when filtering VLANs by virtual machine with no cluster assigned * [#10439](https://github.com/netbox-community/netbox/issues/10439) - Fix form widget styling for DeviceType airflow field * [#10445](https://github.com/netbox-community/netbox/issues/10445) - Avoid rounding virtual machine memory values +* [#10460](https://github.com/netbox-community/netbox/issues/10460) - Restore missing connection details for device components * [#10461](https://github.com/netbox-community/netbox/issues/10461) - Enable filtering by read-only custom fields in the UI * [#10470](https://github.com/netbox-community/netbox/issues/10470) - Omit read-only custom fields from CSV import forms * [#10480](https://github.com/netbox-community/netbox/issues/10480) - Cable trace SVG links should not force a new window diff --git a/netbox/templates/dcim/consoleport.html b/netbox/templates/dcim/consoleport.html index 39ffbf552..ad4f15c9d 100644 --- a/netbox/templates/dcim/consoleport.html +++ b/netbox/templates/dcim/consoleport.html @@ -54,80 +54,40 @@ {% plugin_left_page object %}
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -{{ object.connected_endpoint.device|linkify }} | -
Name | -{{ object.connected_endpoint|linkify:"name" }} | -
Type | -{{ object.connected_endpoint.get_type_display|placeholder }} | -
Description | -{{ object.connected_endpoint.description|placeholder }} | -
Path Status | -- {% if object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -- {{ object.connected_endpoint.device|linkify }} - | -
Name | -{{ object.connected_endpoint|linkify:"name" }} | -
Type | -{{ object.connected_endpoint.get_type_display|placeholder }} | -
Description | -{{ object.connected_endpoint.description|placeholder }} | -
Path Status | -- {% if object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -
Cable | ++ {{ object.cable|linkify }} + + + + | +
---|---|
Path Status | ++ {% if object.path.is_complete and object.path.is_active %} + Reachable + {% else %} + Not Reachable + {% endif %} + | +
Path Endpoints | +
+ {% for endpoint in object.connected_endpoints %}
+ {% if endpoint.parent_object %}
+ {{ endpoint.parent_object|linkify }}
+
+ {% endif %}
+ {{ endpoint|linkify }}
+ {% if not forloop.last %} {% endif %} + {% empty %} + {{ ''|placeholder }} + {% endfor %} + |
+
- {% if object.connected_endpoint.enabled %} - Enabled - {% else %} - Disabled - {% endif %} - | -|
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -{{ iface.device|linkify }} | -
Name | -{{ iface|linkify:"name" }} | -
Type | -{{ iface.get_type_display }} | -
LAG | -{{ iface.lag|linkify|placeholder }} | -
Description | -{{ iface.description|placeholder }} | -
MTU | -{{ iface.mtu|placeholder }} | -
MAC Address | -{{ iface.mac_address|placeholder }} | -
802.1Q Mode | -{{ iface.get_mode_display }} | -
Provider | -{{ ct.circuit.provider|linkify }} | -
Circuit | -{{ ct.circuit|linkify }} | -
Side | -{{ ct.term_side }} | -
Path Status | -- {% if object.path.is_complete and object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -
Device | {{ peer_interface.device|linkify }} | diff --git a/netbox/templates/dcim/powerfeed.html b/netbox/templates/dcim/powerfeed.html index 584454df8..adb779ce3 100644 --- a/netbox/templates/dcim/powerfeed.html +++ b/netbox/templates/dcim/powerfeed.html @@ -100,73 +100,33 @@ {% plugin_left_page object %}
---|
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -{{ object.connected_endpoint.device|linkify }} | -
Name | -{{ object.connected_endpoint|linkify:"name" }} | -
Type | -{{ object.connected_endpoint.get_type_display|placeholder }} | -
Description | -{{ object.connected_endpoint.description|placeholder }} | -
Path Status | -- {% if object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -{{ object.connected_endpoint.device|linkify }} | -
Name | -{{ object.connected_endpoint|linkify:"name" }} | -
Type | -{{ object.connected_endpoint.get_type_display|placeholder }} | -
Description | -{{ object.connected_endpoint.description|placeholder }} | -
Path Status | -- {% if object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -
Cable | -- {{ object.cable|linkify }} - - - - | -
---|---|
Device | -{{ object.connected_endpoint.device|linkify }} | -
Name | -{{ object.connected_endpoint|linkify:"name" }} | -
Type | -{{ object.connected_endpoint.get_type_display|placeholder }} | -
Description | -{{ object.connected_endpoint.description|placeholder }} | -
Path Status | -- {% if object.path.is_active %} - Reachable - {% else %} - Not Reachable - {% endif %} - | -