File tree 2 files changed +4
-3
lines changed
netbox/templates/dcim/device
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11
11
12
12
* [ #7674 ] ( https://github.com/netbox-community/netbox/issues/7674 ) - Fix inadvertent application of device type context to virtual machines
13
13
* [ #8074 ] ( https://github.com/netbox-community/netbox/issues/8074 ) - Ordering VMs by name should reference naturalized value
14
+ * [ #8079 ] ( https://github.com/netbox-community/netbox/issues/8079 ) - Fix validation of LLDP neighbors when connected device has an asset tag
14
15
15
16
---
16
17
Original file line number Diff line number Diff line change @@ -31,12 +31,12 @@ <h5 class="d-inline">LLDP Neighbors</h5>
31
31
< tbody >
32
32
{% for iface in interfaces %}
33
33
< tr id ="{{ iface.name }} ">
34
- < td class =" font-monospace " > {{ iface }}</ td >
34
+ < td > {{ iface }}</ td >
35
35
{% if iface.connected_endpoint.device %}
36
- < td class ="configured_device " data ="{{ iface.connected_endpoint.device }} " data-chassis ="{{ iface.connected_endpoint.device.virtual_chassis.name }} ">
36
+ < td class ="configured_device " data ="{{ iface.connected_endpoint.device.name }} " data-chassis ="{{ iface.connected_endpoint.device.virtual_chassis.name }} ">
37
37
< a href ="{% url 'dcim:device' pk=iface.connected_endpoint.device.pk %} "> {{ iface.connected_endpoint.device }}</ a >
38
38
</ td >
39
- < td class ="configured_interface " data ="{{ iface.connected_endpoint }} ">
39
+ < td class ="configured_interface " data ="{{ iface.connected_endpoint.name }} ">
40
40
< span title ="{{ iface.connected_endpoint.get_type_display }} "> {{ iface.connected_endpoint }}</ span >
41
41
</ td >
42
42
{% elif iface.connected_endpoint.circuit %}
You can’t perform that action at this time.
0 commit comments