From 2ecd306e50cb8c18b9ce9f9d48e620517635b13c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Fri, 18 Oct 2013 14:05:25 +0200 Subject: [PATCH] Some mil form fields are not required --- edumed/contact_forms.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/edumed/contact_forms.py b/edumed/contact_forms.py index 24ab7ef..e809e2b 100644 --- a/edumed/contact_forms.py +++ b/edumed/contact_forms.py @@ -142,23 +142,27 @@ class MILForm(ContactForm): question_stages = forms.CharField( label = _('What do you think about the proposed educational stages classification?'), widget = forms.Textarea, - max_length = 255 + max_length = 255, + required = False ) question_fields = forms.CharField( label = _('What do you think about the proposed thematic fields?'), widget = forms.Textarea, - max_length = 255 + max_length = 255, + required = False ) question_left_out = forms.CharField( label = _('What important areas of media and information literacy have been left out?'), widget = forms.Textarea, - max_length = 255 + max_length = 255, + required = False ) other = forms.CharField( label = _('Other suggestions and comments'), widget = forms.Textarea, - max_length = 255 + max_length = 255, + required = False ) -- 2.20.1