project/kiwipycon/talk/forms.py
changeset 7 ac5a1c60c2bc
parent 1 fda1c66b25f9
child 11 ccd48e1468bd
equal deleted inserted replaced
4:f9757a637d04 7:ac5a1c60c2bc
    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 timeslot', help_text=u'Select preferred time slot')
    51     audience = forms.ChoiceField(choices=AUDIENCE_CHOICES, label=u'Itended 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,
    56 #        required=False,
    56 #        required=False,