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

Fixes #1993: Corrected status choices in site CSV import form

This commit is contained in:
Jeremy Stretch
2018-03-29 09:50:29 -04:00
parent 4ec6e52e73
commit 94b12e506e

View File

@ -131,7 +131,7 @@ class SiteForm(BootstrapMixin, TenancyForm, CustomFieldForm):
class SiteCSVForm(forms.ModelForm):
status = CSVChoiceField(
choices=DEVICE_STATUS_CHOICES,
choices=SITE_STATUS_CHOICES,
required=False,
help_text='Operational status'
)