app/soc/models/group.py
changeset 685 a440ced9a75f
parent 683 de829096b814
child 772 a91f7856754e
equal deleted inserted replaced
684:896672e44e03 685:a440ced9a75f
    81   #: supplied, it is used as a shipping address.
    81   #: supplied, it is used as a shipping address.
    82   city = db.StringProperty(required=True,
    82   city = db.StringProperty(required=True,
    83       verbose_name=ugettext_lazy('City'))
    83       verbose_name=ugettext_lazy('City'))
    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   #: Optional 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(
    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(