From: Aleksander Ɓukasz Date: Tue, 10 Jun 2014 12:18:28 +0000 (+0200) Subject: Make presentation not required in a registration form X-Git-Url: https://git.mdrn.pl/prawokultury.git/commitdiff_plain/c62911fa740b92ab377ed26f8dc2b6dbe1d780c9 Make presentation not required in a registration form --- diff --git a/prawokultury/contact_forms.py b/prawokultury/contact_forms.py index 11ae7b9..d9d4b79 100644 --- a/prawokultury/contact_forms.py +++ b/prawokultury/contact_forms.py @@ -69,7 +69,7 @@ class RegisterSpeaker(RegistrationForm): title = forms.CharField(label=_('Title of presentation'), max_length=256, required=True) presentation = forms.FileField(label=_('Presentation'), - required=True) + required=False) summary = forms.CharField(label=_('Summary of presentation (max. 1800 characters)'), widget=forms.Textarea, max_length=1800, required=True)