Przeglądaj źródła

#10059 change ordering of identifier column

Arthur 3 lat temu
rodzic
commit
e8f62eb1f9
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      netbox/ipam/tables/l2vpn.py

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

@@ -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',
-            'actions', 'identifier',
+            '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):