1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #15899: Correct the view name for the tags column on L2VPNTerminationTable

This commit is contained in:
Jeremy Stretch
2024-04-30 14:41:10 -04:00
parent 693c6e4da5
commit 11816b45e7

View File

@ -74,7 +74,7 @@ class L2VPNTerminationTable(NetBoxTable):
verbose_name=_('Object Site') verbose_name=_('Object Site')
) )
tags = columns.TagColumn( tags = columns.TagColumn(
url_name='ipam:l2vpntermination_list' url_name='vpn:l2vpntermination_list'
) )
class Meta(NetBoxTable.Meta): class Meta(NetBoxTable.Meta):