Merge pull request #10097 from arthanson/art-10059

Fix for #10059 - add identifier to L2VPN table
This commit is contained in:
Jeremy Stretch 2022-08-22 14:31:11 -04:00 committed by GitHub
commit 646272f9b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,10 +33,10 @@ class L2VPNTable(TenancyColumnsMixin, NetBoxTable):
class Meta(NetBoxTable.Meta):
model = L2VPN
fields = (
'pk', 'name', 'slug', 'type', 'description', 'import_targets', 'export_targets', 'tenant', 'tenant_group',
'pk', 'name', 'slug', 'identifier', 'type', 'description', 'import_targets', 'export_targets', 'tenant', 'tenant_group',
'actions',
)
default_columns = ('pk', 'name', 'type', 'description', 'actions')
default_columns = ('pk', 'name', 'identifier', 'type', 'description', 'actions')
class L2VPNTerminationTable(NetBoxTable):