summaryrefslogtreecommitdiff
path: root/website/forms.py
diff options
context:
space:
mode:
authorThomas Stephen Lee2015-10-27 12:06:56 +0530
committerThomas Stephen Lee2015-10-27 12:06:56 +0530
commit509bae77d1fd06ac7ed13192522cba27d96a09a2 (patch)
treed9648a9f6dd6e13e4fa0c817012e1399abf25c88 /website/forms.py
parent1edd8abf802616a0b2b50ecc27f525aac7085bf5 (diff)
downloadSciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.tar.gz
SciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.tar.bz2
SciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.zip
Make cfp fields optional and misc design changesHEADmaster
Diffstat (limited to 'website/forms.py')
-rw-r--r--website/forms.py4
1 files changed, 4 insertions, 0 deletions
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', )