From c71635510c831068968eee720b753a81cca6f45f Mon Sep 17 00:00:00 2001 From: Martin Hauser Date: Wed, 22 Apr 2026 22:30:59 +0200 Subject: [PATCH] feat(account): Add sticky bulk actions to account templates (#21987) Convert bookmarks, notifications, and subscriptions templates to use the new sticky-actions component with data-driven positioning. Wraps bulk delete buttons in sticky-actions card for consistent UX. --- netbox/templates/account/bookmarks.html | 6 ++++-- netbox/templates/account/notifications.html | 6 ++++-- netbox/templates/account/subscriptions.html | 6 ++++-- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/netbox/templates/account/bookmarks.html b/netbox/templates/account/bookmarks.html index 2e3ff5691..983f8cf34 100644 --- a/netbox/templates/account/bookmarks.html +++ b/netbox/templates/account/bookmarks.html @@ -23,8 +23,10 @@ {# Form buttons #} -
- {% bulk_delete_button model query_params=request.GET %} +
+
+ {% bulk_delete_button model query_params=request.GET %} +
{% endblock %} diff --git a/netbox/templates/account/notifications.html b/netbox/templates/account/notifications.html index 46feb80b0..f55642e2b 100644 --- a/netbox/templates/account/notifications.html +++ b/netbox/templates/account/notifications.html @@ -23,8 +23,10 @@
{# Form buttons #} -
- {% bulk_delete_button model query_params=request.GET %} +
+
+ {% bulk_delete_button model query_params=request.GET %} +
{% endblock %} diff --git a/netbox/templates/account/subscriptions.html b/netbox/templates/account/subscriptions.html index 0ae1060cc..04b96d82e 100644 --- a/netbox/templates/account/subscriptions.html +++ b/netbox/templates/account/subscriptions.html @@ -23,8 +23,10 @@
{# Form buttons #} -
- {% bulk_delete_button model query_params=request.GET %} +
+
+ {% bulk_delete_button model query_params=request.GET %} +
{% endblock %}