mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Fixes #15960: Use internal ManyToManyColumn to ensure proper export behavior
This commit is contained in:
@ -618,7 +618,7 @@ class InterfaceTable(ModularDeviceComponentTable, BaseInterfaceTable, PathEndpoi
|
|||||||
verbose_name=_('VRF'),
|
verbose_name=_('VRF'),
|
||||||
linkify=True
|
linkify=True
|
||||||
)
|
)
|
||||||
inventory_items = tables.ManyToManyColumn(
|
inventory_items = columns.ManyToManyColumn(
|
||||||
linkify_item=True,
|
linkify_item=True,
|
||||||
verbose_name=_('Inventory Items'),
|
verbose_name=_('Inventory Items'),
|
||||||
)
|
)
|
||||||
|
@ -378,7 +378,7 @@ class IPAddressTable(TenancyColumnsMixin, NetBoxTable):
|
|||||||
orderable=False,
|
orderable=False,
|
||||||
verbose_name=_('NAT (Inside)')
|
verbose_name=_('NAT (Inside)')
|
||||||
)
|
)
|
||||||
nat_outside = tables.ManyToManyColumn(
|
nat_outside = columns.ManyToManyColumn(
|
||||||
linkify_item=True,
|
linkify_item=True,
|
||||||
orderable=False,
|
orderable=False,
|
||||||
verbose_name=_('NAT (Outside)')
|
verbose_name=_('NAT (Outside)')
|
||||||
|
@ -63,7 +63,7 @@ class IKEPolicyTable(NetBoxTable):
|
|||||||
mode = tables.Column(
|
mode = tables.Column(
|
||||||
verbose_name=_('Mode')
|
verbose_name=_('Mode')
|
||||||
)
|
)
|
||||||
proposals = tables.ManyToManyColumn(
|
proposals = columns.ManyToManyColumn(
|
||||||
linkify_item=True,
|
linkify_item=True,
|
||||||
verbose_name=_('Proposals')
|
verbose_name=_('Proposals')
|
||||||
)
|
)
|
||||||
@ -129,7 +129,7 @@ class IPSecPolicyTable(NetBoxTable):
|
|||||||
verbose_name=_('Name'),
|
verbose_name=_('Name'),
|
||||||
linkify=True
|
linkify=True
|
||||||
)
|
)
|
||||||
proposals = tables.ManyToManyColumn(
|
proposals = columns.ManyToManyColumn(
|
||||||
linkify_item=True,
|
linkify_item=True,
|
||||||
verbose_name=_('Proposals')
|
verbose_name=_('Proposals')
|
||||||
)
|
)
|
||||||
|
@ -91,7 +91,7 @@ class TunnelTerminationTable(TenancyColumnsMixin, NetBoxTable):
|
|||||||
verbose_name=_('Tunnel interface'),
|
verbose_name=_('Tunnel interface'),
|
||||||
linkify=True
|
linkify=True
|
||||||
)
|
)
|
||||||
ip_addresses = tables.ManyToManyColumn(
|
ip_addresses = columns.ManyToManyColumn(
|
||||||
accessor=tables.A('termination__ip_addresses'),
|
accessor=tables.A('termination__ip_addresses'),
|
||||||
orderable=False,
|
orderable=False,
|
||||||
linkify_item=True,
|
linkify_item=True,
|
||||||
|
Reference in New Issue
Block a user