Fixes #20028: Restore bulk deletion button for bookmarks, notifications, and subscriptions (#20032)
CI / build (20.x, 3.10) (push) Waiting to run
CI / build (20.x, 3.11) (push) Waiting to run
CI / build (20.x, 3.12) (push) Waiting to run

This commit is contained in:
Jeremy Stretch
2025-08-06 16:56:22 -04:00
committed by GitHub
parent 4ce47e778b
commit 33d891e67b
4 changed files with 6 additions and 11 deletions
+3 -2
View File
@@ -340,11 +340,12 @@ class TableConfigTable(NetBoxTable):
class BookmarkTable(NetBoxTable):
object_type = columns.ContentTypeColumn(
verbose_name=_('Object Types'),
verbose_name=_('Object Type'),
)
object = tables.Column(
verbose_name=_('Object'),
linkify=True
linkify=True,
orderable=False
)
actions = columns.ActionsColumn(
actions=('delete',)