mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-16 12:12:53 -06:00
Fix incorrect queryset definition
This commit is contained in:
parent
d85c3830d0
commit
eeaa2a8c87
@ -482,7 +482,7 @@ class VLANDeviceMappingImportForm(NetBoxModelImportForm):
|
|||||||
)
|
)
|
||||||
vlan = CSVModelChoiceField(
|
vlan = CSVModelChoiceField(
|
||||||
label=_('VLAN'),
|
label=_('VLAN'),
|
||||||
queryset=VLANGroup.objects.all(),
|
queryset=VLAN.objects.all(),
|
||||||
to_field_name='name',
|
to_field_name='name',
|
||||||
help_text=_('Assigned VLAN')
|
help_text=_('Assigned VLAN')
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user