project/scipycon/registration/forms.py
changeset 191 0eb941d14ec3
parent 137 ec6e58c639bf
child 199 97cbeda302a9
equal deleted inserted replaced
190:d351d19d3589 191:0eb941d14ec3
    31         'faster correspondence', max_length=14,
    31         'faster correspondence', max_length=14,
    32         widget=forms.TextInput(attrs={'size':'20'}))
    32         widget=forms.TextInput(attrs={'size':'20'}))
    33     allow_contact = forms.BooleanField(required=False, label=u'Contact',
    33     allow_contact = forms.BooleanField(required=False, label=u'Contact',
    34         help_text=u'May organizers of SciPy.in contact you after the event?')
    34         help_text=u'May organizers of SciPy.in contact you after the event?')
    35     conference = forms.BooleanField(required=False, label=u'Conference',
    35     conference = forms.BooleanField(required=False, label=u'Conference',
    36         help_text=u"""Do you intend to attend SciPy.in 2010 conference?  
    36         help_text=u"""Do you intend to attend SciPy.in 2010 conference?""")
    37         Note: Only conference has an registration fee of Rs.200 which you will
       
    38         pay on the spot.""")
       
    39     tutorial = forms.BooleanField(required=False, label=u'Tutorial',
    37     tutorial = forms.BooleanField(required=False, label=u'Tutorial',
    40         help_text=u'Do you intend to attend the tutorials?')
    38         help_text=u'Do you intend to attend the tutorials?')
    41     sprint = forms.BooleanField(required=False, label=u'Sprint',
    39     sprint = forms.BooleanField(required=False, label=u'Sprint',
    42         help_text=u'Do you intend to attend the sprints?')
    40         help_text=u'Do you intend to attend the sprints?')
    43 
    41