diff --git a/netbox/templates/dcim/device_lldp_neighbors.html b/netbox/templates/dcim/device_lldp_neighbors.html index 6a5446c3b..d15d0a5c4 100644 --- a/netbox/templates/dcim/device_lldp_neighbors.html +++ b/netbox/templates/dcim/device_lldp_neighbors.html @@ -16,6 +16,7 @@ Configured Interface LLDP Device LLDP Interface + LLDP Chassis-Id @@ -36,6 +37,7 @@ {% endif %} + {% endfor %} @@ -57,6 +59,7 @@ $(document).ready(function() { // Add LLDP neighbors to table row.children('td.device').html(neighbor['name']); row.children('td.interface').html(neighbor['remote-interface']); + row.children('td.chassis-id').html(neighbor['chassis-id']); // Apply colors to rows if (!configured_device && neighbor['name']) { row.addClass('info');