Browse Source

Fixes #1338: Allow importing prefixes with "container" status

Jeremy Stretch 7 years ago
parent
commit
e54c74d972
1 changed files with 1 additions and 1 deletions
  1. 1 1
      netbox/ipam/forms.py

+ 1 - 1
netbox/ipam/forms.py

@@ -264,7 +264,7 @@ class PrefixCSVForm(forms.ModelForm):
         required=False
         required=False
     )
     )
     status = CSVChoiceField(
     status = CSVChoiceField(
-        choices=IPADDRESS_STATUS_CHOICES,
+        choices=PREFIX_STATUS_CHOICES,
         help_text='Operational status'
         help_text='Operational status'
     )
     )
     role = forms.ModelChoiceField(
     role = forms.ModelChoiceField(