From 37644eed3f370777cfa40ce852e86e64d5470974 Mon Sep 17 00:00:00 2001 From: Jo Date: Fri, 12 Sep 2025 08:22:16 +0200 Subject: [PATCH] Extended plugin development documentation regarding bulk edit/delete buttons in tables --- docs/plugins/development/tables.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/plugins/development/tables.md b/docs/plugins/development/tables.md index c51158849..ea36b204d 100644 --- a/docs/plugins/development/tables.md +++ b/docs/plugins/development/tables.md @@ -47,6 +47,11 @@ table.configure(request) This will automatically apply any user-specific preferences for the table. (If using a generic view provided by NetBox, table configuration is handled automatically.) + +### Bulk Edit and Delete Actions + +Bulk edit and delete buttons are automatically added to the table, if there is an appropriate view registered to the `${modelname}_bulk_edit` or `${modelname}_bulk_delete` path name. + ## Columns The table column classes listed below are supported for use in plugins. These classes can be imported from `netbox.tables.columns`.