From 6220f62af36323d884f36f681487015b6ce674ae Mon Sep 17 00:00:00 2001 From: Naomi Date: Thu, 4 Oct 2018 13:47:31 +0100 Subject: [PATCH] Set the images_file field to non-required in both places it was set to non-required in the form but not in reality --- apps/map/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/map/forms.py b/apps/map/forms.py index edc2cbe..275c54a 100644 --- a/apps/map/forms.py +++ b/apps/map/forms.py @@ -95,7 +95,7 @@ class LongCaseStudyForm(BaseCaseStudyForm): images_files = forms.ModelMultipleChoiceField( queryset=ImageFile.objects.all(), widget=CommaSeparatedTextInput(), - required=True + required=False ) official_project_documents = forms.FileField(