diff options
Diffstat (limited to 'project/kiwipycon/talk/forms.py')
-rw-r--r-- | project/kiwipycon/talk/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/kiwipycon/talk/forms.py b/project/kiwipycon/talk/forms.py index 5059285..db9064b 100644 --- a/project/kiwipycon/talk/forms.py +++ b/project/kiwipycon/talk/forms.py @@ -48,7 +48,7 @@ class TalkSubmitForm(forms.Form): widget=forms.TextInput(attrs={'size':'50'})) duration = forms.ChoiceField(choices=DURATION_CHOICES, required=True, label=u'Preferred timeslot', help_text=u'Select preferred time slot') - audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Itended audience', + audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Intended audience', help_text=u'Select one of the available options or enter other type of intended audience') # audience_other = forms.CharField(label=u'Other intended audience', # help_text=u'Description of intended audience (ie. Discordians)', |