equal
deleted
inserted
replaced
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 |