app/soc/models/user.py
changeset 540 e14e9cf23097
parent 533 ba3309b2fd30
child 546 850d9a5ad894
equal deleted inserted replaced
539:e30462354e26 540:e14e9cf23097
    77   #: Required field storing publicly-displayed name.  Can be a real name
    77   #: Required field storing publicly-displayed name.  Can be a real name
    78   #: (though this is not recommended), or a nick name or some other public
    78   #: (though this is not recommended), or a nick name or some other public
    79   #: alias.  Public names can be any valid UTF-8 text.
    79   #: alias.  Public names can be any valid UTF-8 text.
    80   public_name = db.StringProperty(required=True,
    80   public_name = db.StringProperty(required=True,
    81       verbose_name=ugettext_lazy('Public name'))
    81       verbose_name=ugettext_lazy('Public name'))
       
    82   public_name.help_text = ugettext_lazy(
       
    83       'Human-readable name (UTF-8) that will be displayed publicly on the'
       
    84       ' site. While you can use your real name, like "First Last", please'
       
    85       ' keep in mind that this "public name" will be used as your alias'
       
    86       ' throughout the site, displayed to all users, for comments, document'
       
    87       ' ownership, and the like.  Please do not use your real name if you'
       
    88       ' are a minor (not an adult) where you live.')
    82       
    89       
    83   #: field storing whether User is a Developer with site-wide access.
    90   #: field storing whether User is a Developer with site-wide access.
    84   is_developer = db.BooleanProperty(
    91   is_developer = db.BooleanProperty(
    85       verbose_name=ugettext_lazy('Is Developer'))
    92       verbose_name=ugettext_lazy('Is Developer'))
    86   is_developer.help_text = ugettext_lazy(
    93   is_developer.help_text = ugettext_lazy(
    87       'Field used to indicate user with site-wide "Developer" access.')
    94       'Field used to indicate user with site-wide "Developer" access.')
       
    95