diff options
author | Matthew Lemon <y@yulqen.org> | 2024-07-11 16:35:10 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-07-11 16:35:10 +0100 |
commit | 375aec43a2badc5eef86d528745908cb2f572bb7 (patch) | |
tree | a4b5d8c19b51df7328dbd1aa9c839ad19949fa2c /pyblackbird_cc/resources/forms.py | |
parent | 0309afdf0f8ceb9695e32e6e88b32a603e5a6c04 (diff) |
Curriculum is optional and age ranges are fixed
Diffstat (limited to 'pyblackbird_cc/resources/forms.py')
-rw-r--r-- | pyblackbird_cc/resources/forms.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pyblackbird_cc/resources/forms.py b/pyblackbird_cc/resources/forms.py index d0fb001..35c5034 100644 --- a/pyblackbird_cc/resources/forms.py +++ b/pyblackbird_cc/resources/forms.py @@ -67,6 +67,7 @@ class ResourceCreateForm(forms.Form): ) curriculum = forms.ChoiceField( choices=CURRICULUM_CHOICES, + required=False, ) main_resource_category = forms.ModelChoiceField( queryset=ResourceCategory.objects.all(), |