Updated help text for email properties in Group model.
authorLennard de Rijk <ljvderijk@gmail.com>
Sun, 15 Mar 2009 16:42:54 +0000
changeset 1877 93dfd2d40c0b
parent 1876 a77d4cdcc052
child 1878 25116444358c
Updated help text for email properties in Group model. Patch by: Lennard de Rijk Reviewed by: to-be-reviewed
app/soc/models/group.py
app/soc/models/group_app.py
--- a/app/soc/models/group.py	Sun Mar 15 16:30:53 2009 +0000
+++ b/app/soc/models/group.py	Sun Mar 15 16:42:54 2009 +0000
@@ -63,7 +63,11 @@
   #: the Group (as opposed to the founder.account email address which is
   #: kept secret, revealed only to Developers).
   email = db.EmailProperty(required=True,
-      verbose_name=ugettext('Email'))  
+      verbose_name=ugettext('Email'))
+  email.help_text = ugettext(
+      "Enter an email address to be used by would-be members seeking "
+      "additional information. This can be an individual's email address or a "
+      "mailing list address; use whichever will work best for you.")
 
   #: Required field storing description of the group.
   description = db.TextProperty(required=True,
--- a/app/soc/models/group_app.py	Sun Mar 15 16:30:53 2009 +0000
+++ b/app/soc/models/group_app.py	Sun Mar 15 16:42:54 2009 +0000
@@ -64,7 +64,11 @@
   #: See also:  soc.models.group.Group.email
   email = db.EmailProperty(required=True,
     verbose_name=ugettext('Public Email'))
-  
+  email.help_text = ugettext(
+      "Enter an email address to be used by would-be members seeking "
+      "additional information. This can be an individual's email address or a "
+      "mailing list address; use whichever will work best for you.")
+
   #: Required description of the Group.
   description = db.TextProperty(required=True,
       verbose_name=ugettext('Description'))