Browse Source

Fixes #1273: Corrected status choices in IP address import form

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

+ 1 - 1
netbox/ipam/forms.py

@@ -582,7 +582,7 @@ class IPAddressCSVForm(forms.ModelForm):
         }
         }
     )
     )
     status = CSVChoiceField(
     status = CSVChoiceField(
-        choices=PREFIX_STATUS_CHOICES,
+        choices=IPADDRESS_STATUS_CHOICES,
         help_text='Operational status'
         help_text='Operational status'
     )
     )
     device = FlexibleModelChoiceField(
     device = FlexibleModelChoiceField(