mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 01:41:22 -06:00
Fixes #9499: Fix filtered bulk deletion of VM Interfaces
This commit is contained in:
parent
44586743ea
commit
1c9db2d9f8
@ -10,6 +10,7 @@
|
|||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
* [#9437](https://github.com/netbox-community/netbox/issues/9437) - Standardize form submission buttons and behavior when using enter key
|
* [#9437](https://github.com/netbox-community/netbox/issues/9437) - Standardize form submission buttons and behavior when using enter key
|
||||||
|
* [#9499](https://github.com/netbox-community/netbox/issues/9499) - Fix filtered bulk deletion of VM Interfaces
|
||||||
* [#9634](https://github.com/netbox-community/netbox/issues/9634) - Fix image URLs in rack elevations when using external storage
|
* [#9634](https://github.com/netbox-community/netbox/issues/9634) - Fix image URLs in rack elevations when using external storage
|
||||||
* [#9715](https://github.com/netbox-community/netbox/issues/9715) - Fix `SOCIAL_AUTH_PIPELINE` config parameter not taking effect
|
* [#9715](https://github.com/netbox-community/netbox/issues/9715) - Fix `SOCIAL_AUTH_PIPELINE` config parameter not taking effect
|
||||||
* [#9754](https://github.com/netbox-community/netbox/issues/9754) - Fix regression introduced by #9632
|
* [#9754](https://github.com/netbox-community/netbox/issues/9754) - Fix regression introduced by #9632
|
||||||
|
@ -471,6 +471,7 @@ class VMInterfaceBulkImportView(generic.BulkImportView):
|
|||||||
|
|
||||||
class VMInterfaceBulkEditView(generic.BulkEditView):
|
class VMInterfaceBulkEditView(generic.BulkEditView):
|
||||||
queryset = VMInterface.objects.all()
|
queryset = VMInterface.objects.all()
|
||||||
|
filterset = filtersets.VMInterfaceFilterSet
|
||||||
table = tables.VMInterfaceTable
|
table = tables.VMInterfaceTable
|
||||||
form = forms.VMInterfaceBulkEditForm
|
form = forms.VMInterfaceBulkEditForm
|
||||||
|
|
||||||
@ -482,6 +483,7 @@ class VMInterfaceBulkRenameView(generic.BulkRenameView):
|
|||||||
|
|
||||||
class VMInterfaceBulkDeleteView(generic.BulkDeleteView):
|
class VMInterfaceBulkDeleteView(generic.BulkDeleteView):
|
||||||
queryset = VMInterface.objects.all()
|
queryset = VMInterface.objects.all()
|
||||||
|
filterset = filtersets.VMInterfaceFilterSet
|
||||||
table = tables.VMInterfaceTable
|
table = tables.VMInterfaceTable
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user