diff --git a/docs/release-notes/version-2.11.md b/docs/release-notes/version-2.11.md index 162bbaf13..f1e3bf838 100644 --- a/docs/release-notes/version-2.11.md +++ b/docs/release-notes/version-2.11.md @@ -11,6 +11,7 @@ * [#6740](https://github.com/netbox-community/netbox/issues/6740) - Add import button to VM interfaces list * [#6892](https://github.com/netbox-community/netbox/issues/6892) - Fix validation of unit ranges when creating a rack reservation * [#6902](https://github.com/netbox-community/netbox/issues/6902) - Populate device field when cloning device components +* [#6909](https://github.com/netbox-community/netbox/issues/6909) - Remove extraneous `site` column from VLAN group import form --- diff --git a/netbox/ipam/forms.py b/netbox/ipam/forms.py index 1b38b63f4..673e090cb 100644 --- a/netbox/ipam/forms.py +++ b/netbox/ipam/forms.py @@ -1238,12 +1238,6 @@ class VLANGroupForm(BootstrapMixin, CustomFieldModelForm): class VLANGroupCSVForm(CustomFieldModelCSVForm): - site = CSVModelChoiceField( - queryset=Site.objects.all(), - required=False, - to_field_name='name', - help_text='Assigned site' - ) slug = SlugField() class Meta: