diff --git a/netbox/dcim/tables/devices.py b/netbox/dcim/tables/devices.py index 4c863e12a..90e6b4863 100644 --- a/netbox/dcim/tables/devices.py +++ b/netbox/dcim/tables/devices.py @@ -359,6 +359,17 @@ class CableTerminationTable(NetBoxTable): verbose_name=_('Mark Connected'), ) + def value_link_peer(self, value): + string = "" + for termination in value: + if value and not str: + string += " " + if termination.parent_object: + string += f"{termination.parent_object} > " + string += str(termination) + + return string + class PathEndpointTable(CableTerminationTable): connection = columns.TemplateColumn(