diff options
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', ) |