Просмотр исходного кода

fix for #10059 - add identifier to L2VPN table

Arthur 3 лет назад
Родитель
Сommit
917439725a
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      netbox/ipam/tables/l2vpn.py

+ 1 - 1
netbox/ipam/tables/l2vpn.py

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