app/soc/models/student.py
changeset 2165 ab1ff1608258
parent 1989 3fa3384b5378
child 2371 805400745f57
equal deleted inserted replaced
2164:94e498e3dd44 2165:ab1ff1608258
    38   """
    38   """
    39 
    39 
    40   school_name = db.StringProperty(required=True, 
    40   school_name = db.StringProperty(required=True, 
    41       verbose_name=ugettext('School Name'))
    41       verbose_name=ugettext('School Name'))
    42   school_name.group = ugettext("5. Education")
    42   school_name.group = ugettext("5. Education")
       
    43   school_name.help_text = ugettext(
       
    44       'Please enter the full name of your school, college or university in'
       
    45       ' this field. Please use the complete formal name of your school, e.g.'
       
    46       ' UC Berekeley instead of Cal or UCB. It would be most wonderful if you'
       
    47       ' could provide your school\'s name in English, as all the program '
       
    48       'administrators speak English as their first language and it will make'
       
    49       ' it much easier for us to assemble program statistics, etc., later if'
       
    50       ' we can easily read the name of your school.')
       
    51 
    43   school_country = db.StringProperty(required=True,
    52   school_country = db.StringProperty(required=True,
    44       verbose_name=ugettext('School Country/Territory'),
    53       verbose_name=ugettext('School Country/Territory'),
    45       choices=countries.COUNTRIES_AND_TERRITORIES)
    54       choices=countries.COUNTRIES_AND_TERRITORIES)
    46   school_country.group = ugettext("5. Education")
    55   school_country.group = ugettext("5. Education")
    47 
    56