equal
deleted
inserted
replaced
61 |
61 |
62 #: Required email address used as the "public" contact mechanism for |
62 #: Required email address used as the "public" contact mechanism for |
63 #: the Group (as opposed to the founder.account email address which is |
63 #: the Group (as opposed to the founder.account email address which is |
64 #: kept secret, revealed only to Developers). |
64 #: kept secret, revealed only to Developers). |
65 email = db.EmailProperty(required=True, |
65 email = db.EmailProperty(required=True, |
66 verbose_name=ugettext('Email')) |
66 verbose_name=ugettext('Email')) |
|
67 email.help_text = ugettext( |
|
68 "Enter an email address to be used by would-be members seeking " |
|
69 "additional information. This can be an individual's email address or a " |
|
70 "mailing list address; use whichever will work best for you.") |
67 |
71 |
68 #: Required field storing description of the group. |
72 #: Required field storing description of the group. |
69 description = db.TextProperty(required=True, |
73 description = db.TextProperty(required=True, |
70 verbose_name=ugettext('Description')) |
74 verbose_name=ugettext('Description')) |
71 |
75 |