From 509bae77d1fd06ac7ed13192522cba27d96a09a2 Mon Sep 17 00:00:00 2001 From: Thomas Stephen Lee Date: Tue, 27 Oct 2015 12:06:56 +0530 Subject: Make cfp fields optional and misc design changes --- website/forms.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'website/forms.py') diff --git a/website/forms.py b/website/forms.py index fc828f8..cd7b73a 100644 --- a/website/forms.py +++ b/website/forms.py @@ -9,6 +9,10 @@ from website.models import Proposal class ProposalForm(forms.ModelForm): + content_link = forms.CharField(required=False, help_text='Link to the content of your Talk') + speaker_link = forms.CharField(required=False, help_text='Link to information about the Speaker') + attachment = forms.FileField(required=False) + class Meta: model = Proposal exclude = ('user', ) -- cgit