diff options
author | Thomas Stephen Lee | 2015-10-27 12:06:56 +0530 |
---|---|---|
committer | Thomas Stephen Lee | 2015-10-27 12:06:56 +0530 |
commit | 509bae77d1fd06ac7ed13192522cba27d96a09a2 (patch) | |
tree | d9648a9f6dd6e13e4fa0c817012e1399abf25c88 /website/forms.py | |
parent | 1edd8abf802616a0b2b50ecc27f525aac7085bf5 (diff) | |
download | SciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.tar.gz SciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.tar.bz2 SciPy2015-509bae77d1fd06ac7ed13192522cba27d96a09a2.zip |
Diffstat (limited to 'website/forms.py')
-rw-r--r-- | website/forms.py | 4 |
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', ) |