From 1a43ef82d9aa6cdac8a77691146ba8f85b86d1a5 Mon Sep 17 00:00:00 2001 From: Daniel Sheppard Date: Fri, 2 Oct 2020 09:59:16 -0500 Subject: [PATCH] Fixes: #5201 - Fix bulk "all" operations on VLAN Groups --- docs/release-notes/version-2.9.md | 1 + netbox/ipam/views.py | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/release-notes/version-2.9.md b/docs/release-notes/version-2.9.md index 0984f30a3..46f271c82 100644 --- a/docs/release-notes/version-2.9.md +++ b/docs/release-notes/version-2.9.md @@ -9,6 +9,7 @@ * [#5175](https://github.com/netbox-community/netbox/issues/5175) - Fix toggling of rack elevation order * [#5184](https://github.com/netbox-community/netbox/issues/5184) - Fix missing Power Utilization * [#5199](https://github.com/netbox-community/netbox/issues/5199) - Change default LDAP logging to INFO +* [#5201](https://github.com/netbox-community/netbox/issues/5201) - Fix missing querystring when bulk editing/deleting VLAN Group Vlans when selecting "select all x items matching query" --- diff --git a/netbox/ipam/views.py b/netbox/ipam/views.py index c3eac0fd7..4001f147e 100644 --- a/netbox/ipam/views.py +++ b/netbox/ipam/views.py @@ -713,6 +713,7 @@ class VLANGroupVLANsView(ObjectView): return render(request, 'ipam/vlangroup_vlans.html', { 'vlan_group': vlan_group, 'first_available_vlan': vlan_group.get_next_available_vid(), + 'bulk_querystring': 'group_id={}'.format(vlan_group.pk), 'vlan_table': vlan_table, 'permissions': permissions, })