summaryrefslogtreecommitdiff
path: root/scipy/forms.py
diff options
context:
space:
mode:
Diffstat (limited to 'scipy/forms.py')
-rw-r--r--scipy/forms.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/scipy/forms.py b/scipy/forms.py
index 77c2b96..281e929 100644
--- a/scipy/forms.py
+++ b/scipy/forms.py
@@ -36,6 +36,7 @@ class DocumentUploadForm(forms.ModelForm):
widgets = {
'title':forms.TextInput(attrs={'placeholder':'Title of your Talk'}),
'objective':forms.TextInput(attrs={'placeholder':'Objective of the talk'}),
- 'abstract':forms.Textarea(attrs={'placeholder':'Abstract in 400 to 700 '}),
+ 'abstract':forms.Textarea(attrs={'placeholder':'Abstract in 400 to 700 words'}),
+ 'bio':forms.Textarea(attrs={'placeholder':'Tell us something about yourself in a few words'}),
'links':forms.TextInput(attrs={'placeholder':'Link to the code (if any) or relevant links'}),
}