X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/96d24ad58674522d6a68e80e89c75a01e4e1b8b5..6f53d6571e16d43f0084f310a69428446ad9b21c:/edumed/contact_forms.py 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 )