mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-20 12:22:23 -06:00
Allow passing additional columns & specifying a sequence
This commit is contained in:
@@ -59,7 +59,7 @@ class FHRPGroupAssignmentTable(BaseTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = ActionsColumn(
|
||||
actions=('edit', 'delete')
|
||||
sequence=('edit', 'delete')
|
||||
)
|
||||
|
||||
class Meta(BaseTable.Meta):
|
||||
|
||||
@@ -154,7 +154,7 @@ class VLANDevicesTable(VLANMembersTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = ActionsColumn(
|
||||
actions=('edit',)
|
||||
sequence=('edit',)
|
||||
)
|
||||
|
||||
class Meta(BaseTable.Meta):
|
||||
@@ -168,7 +168,7 @@ class VLANVirtualMachinesTable(VLANMembersTable):
|
||||
linkify=True
|
||||
)
|
||||
actions = ActionsColumn(
|
||||
actions=('edit',)
|
||||
sequence=('edit',)
|
||||
)
|
||||
|
||||
class Meta(BaseTable.Meta):
|
||||
|
||||
Reference in New Issue
Block a user