1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #5061: Allow adding/removing tags when bulk editing virtual machine interfaces

This commit is contained in:
Jeremy Stretch
2020-08-27 13:26:41 -04:00
parent 5cdccb47f4
commit 523c32b8af
2 changed files with 2 additions and 1 deletions

View File

@ -684,7 +684,7 @@ class VMInterfaceCSVForm(CSVModelForm):
return self.cleaned_data['enabled']
class VMInterfaceBulkEditForm(BootstrapMixin, BulkEditForm):
class VMInterfaceBulkEditForm(BootstrapMixin, AddRemoveTagsForm, BulkEditForm):
pk = forms.ModelMultipleChoiceField(
queryset=VMInterface.objects.all(),
widget=forms.MultipleHiddenInput()