app/soc/models/role.py
changeset 1961 85a57ba6f6fa
parent 1627 425dccf4f652
child 1979 365f6a145223
equal deleted inserted replaced
1960:64fa3cf03b4e 1961:85a57ba6f6fa
   225   phone = db.PhoneNumberProperty(
   225   phone = db.PhoneNumberProperty(
   226       required=True,
   226       required=True,
   227       verbose_name=ugettext('Phone Number'))
   227       verbose_name=ugettext('Phone Number'))
   228   phone.help_text = ugettext(
   228   phone.help_text = ugettext(
   229       'include complete international calling number with country code')
   229       'include complete international calling number with country code')
       
   230   phone.example_text = ugettext(
       
   231       "e.g. 1650253000 for Google's Corp HQ number in the United States")
   230   phone.group = ugettext("2. Contact Info (Private)")
   232   phone.group = ugettext("2. Contact Info (Private)")
   231 
   233 
   232   #: field storing whether the User has agreed to publish his location
   234   #: field storing whether the User has agreed to publish his location
   233   publish_location = db.BooleanProperty(required=False, default=False,
   235   publish_location = db.BooleanProperty(required=False, default=False,
   234       verbose_name=ugettext('Publish my location'))
   236       verbose_name=ugettext('Publish my location'))