app/soc/models/user.py
changeset 161 f4af04306890
parent 137 0f572149449d
child 181 fdd29818a954
equal deleted inserted replaced
160:269462f166ef 161:f4af04306890
    55 
    55 
    56   #: A Google Account, which also provides a "private" email address.
    56   #: A Google Account, which also provides a "private" email address.
    57   #: This email address is only used in an automated fashion by 
    57   #: This email address is only used in an automated fashion by 
    58   #: Melange web applications and is not made visible to other users 
    58   #: Melange web applications and is not made visible to other users 
    59   #: of any Melange application.
    59   #: of any Melange application.
    60   id = db.UserProperty(required=True)
    60   id = db.UserProperty(required=True,
       
    61       verbose_name=ugettext_lazy('User account'))
       
    62   id.help_text = ugettext_lazy(
       
    63       'Email address of a valid user (Google Account).')
    61 
    64 
    62   #: A list (possibly empty) of former Google Accounts associated with
    65   #: A list (possibly empty) of former Google Accounts associated with
    63   #: this User.
    66   #: this User.
    64   former_ids = db.ListProperty(users.User)
    67   former_ids = db.ListProperty(users.User)
    65 
    68