mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-25 00:36:11 -06:00
12589 review changes for linkify column
This commit is contained in:
parent
e2cc63fb26
commit
2cc7e49531
@ -57,7 +57,7 @@ class TokenTable(NetBoxTable):
|
||||
|
||||
|
||||
class UserTable(NetBoxTable):
|
||||
username = tables.LinkColumn('users:netboxuser', args=[A('pk')])
|
||||
username = tables.Column(linkify=True)
|
||||
actions = columns.ActionsColumn(
|
||||
actions=('edit', 'delete'),
|
||||
)
|
||||
@ -71,7 +71,7 @@ class UserTable(NetBoxTable):
|
||||
|
||||
|
||||
class GroupTable(NetBoxTable):
|
||||
name = tables.LinkColumn('users:netboxgroup', args=[A('pk')])
|
||||
name = tables.Column(linkify=True)
|
||||
actions = columns.ActionsColumn(
|
||||
actions=('edit', 'delete'),
|
||||
)
|
||||
@ -85,7 +85,7 @@ class GroupTable(NetBoxTable):
|
||||
|
||||
|
||||
class ObjectPermissionTable(NetBoxTable):
|
||||
name = tables.LinkColumn('users:objectpermission', args=[A('pk')])
|
||||
name = tables.Column(linkify=True)
|
||||
actions = columns.ActionsColumn(
|
||||
actions=('edit', 'delete'),
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user