diff --git a/netbox/dcim/tables/devices.py b/netbox/dcim/tables/devices.py index 4c863e12a7f..d4c9641b60d 100644 --- a/netbox/dcim/tables/devices.py +++ b/netbox/dcim/tables/devices.py @@ -359,6 +359,11 @@ class CableTerminationTable(NetBoxTable): verbose_name=_('Mark Connected'), ) + def value_link_peer(self, value): + return ', '.join([ + f"{termination.parent_object} > {termination}" for termination in value + ]) + class PathEndpointTable(CableTerminationTable): connection = columns.TemplateColumn(