app/soc/models/group.py
changeset 683 de829096b814
parent 534 c31cfbf1a20f
child 685 a440ced9a75f
equal deleted inserted replaced
682:187f4d95fedb 683:de829096b814
    84   city.help_text = ugettext_lazy('lower ASCII characters only')
    84   city.help_text = ugettext_lazy('lower ASCII characters only')
    85 
    85 
    86   #: Required field containing group address state or province.
    86   #: Required field containing group address state or province.
    87   #: Group state/province can only be lower ASCII, not UTF-8
    87   #: Group state/province can only be lower ASCII, not UTF-8
    88   #: text, because, if supplied, it is used as a shipping address.
    88   #: text, because, if supplied, it is used as a shipping address.
    89   state = db.StringProperty(required=True,
    89   state = db.StringProperty(
    90       verbose_name=ugettext_lazy('State/Province'))
    90       verbose_name=ugettext_lazy('State/Province'))
    91   state.help_text = ugettext_lazy(
    91   state.help_text = ugettext_lazy(
    92       'optional if country/territory does not have states or provinces, '
    92       'optional if country/territory does not have states or provinces, '
    93       'lower ASCII characters only')
    93       'lower ASCII characters only')
    94 
    94