From c62911fa740b92ab377ed26f8dc2b6dbe1d780c9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Aleksander=20=C5=81ukasz?= Date: Tue, 10 Jun 2014 14:18:28 +0200 Subject: [PATCH] Make presentation not required in a registration form --- prawokultury/contact_forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.20.1