29 title = forms.CharField(required=True, label=u'Talk title', |
29 title = forms.CharField(required=True, label=u'Talk title', |
30 help_text=u'Title of proposed presentation', |
30 help_text=u'Title of proposed presentation', |
31 max_length=1024, |
31 max_length=1024, |
32 widget=forms.TextInput(attrs={'size':'50'})) |
32 widget=forms.TextInput(attrs={'size':'50'})) |
33 abstract = forms.CharField(widget=forms.Textarea, required=True, |
33 abstract = forms.CharField(widget=forms.Textarea, required=True, |
34 help_text=u'Summary of proposed presentation (around 30 words)') |
34 help_text=u'Summary of proposed presentation (In 300-700 words)') |
35 # outline = forms.CharField(widget=forms.Textarea, required=True, |
35 # outline = forms.CharField(widget=forms.Textarea, required=True, |
36 # help_text=u'Outline of proposed presentation (around 200 words)') |
36 # help_text=u'Outline of proposed presentation (around 200 words)') |
37 # topic = forms.ChoiceField(choices=TOPIC_CHOICES, |
37 # topic = forms.ChoiceField(choices=TOPIC_CHOICES, |
38 # label=u'Topic', help_text=u'Select one of the available options or enter other topic') |
38 # label=u'Topic', help_text=u'Select one of the available options or enter other topic') |
39 # topic_other = forms.CharField(label=u'Other topic', |
39 # topic_other = forms.CharField(label=u'Other topic', |