project/scipycon/talk/forms.py
changeset 231 839dd1745ad2
parent 96 178b89a3ca4f
equal deleted inserted replaced
230:9649b07aa4c8 231:839dd1745ad2
    45         help_text=u'Description of your topic or comma separated tags',
    45         help_text=u'Description of your topic or comma separated tags',
    46         max_length=255,
    46         max_length=255,
    47         required=False,
    47         required=False,
    48         widget=forms.TextInput(attrs={'size':'50'}))
    48         widget=forms.TextInput(attrs={'size':'50'}))
    49     duration = forms.ChoiceField(choices=DURATION_CHOICES, required=True,
    49     duration = forms.ChoiceField(choices=DURATION_CHOICES, required=True,
    50         label=u'Preferred timeslot', help_text=u'Select preferred time slot')
    50         label=u'Preferred time slot', help_text=u'Select preferred time slot')
    51     audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Intended audience',
    51     audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Intended audience',
    52         help_text=u'Select one of the available options or enter other type of intended audience')
    52         help_text=u'Select one of the available options or enter other type of intended audience')
    53 #    audience_other = forms.CharField(label=u'Other intended audience',
    53 #    audience_other = forms.CharField(label=u'Other intended audience',
    54 #        help_text=u'Description of intended audience (ie. Discordians)',
    54 #        help_text=u'Description of intended audience (ie. Discordians)',
    55 #        max_length=128,
    55 #        max_length=128,