فهرست منبع

Fixes #19166: Fix bulk import support for base_choices (#19257)

Jeremy Stretch 1 سال پیش
والد
کامیت
60cdf89cad
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      netbox/extras/forms/bulk_import.py

+ 1 - 1
netbox/extras/forms/bulk_import.py

@@ -96,7 +96,7 @@ class CustomFieldChoiceSetImportForm(CSVModelForm):
     class Meta:
     class Meta:
         model = CustomFieldChoiceSet
         model = CustomFieldChoiceSet
         fields = (
         fields = (
-            'name', 'description', 'extra_choices', 'order_alphabetically',
+            'name', 'description', 'base_choices', 'extra_choices', 'order_alphabetically',
         )
         )
 
 
     def clean_extra_choices(self):
     def clean_extra_choices(self):