Add (better) help_text to publish_location and school_name
authorSverre Rabbelier <srabbelier@gmail.com>
Sun, 12 Apr 2009 00:18:38 +0000
changeset 2165 ab1ff1608258
parent 2164 94e498e3dd44
child 2166 c9c7c6111988
Add (better) help_text to publish_location and school_name Patch by: Sverre Rabbelier
app/soc/models/role.py
app/soc/models/student.py
--- a/app/soc/models/role.py	Sun Apr 12 00:18:19 2009 +0000
+++ b/app/soc/models/role.py	Sun Apr 12 00:18:38 2009 +0000
@@ -240,7 +240,10 @@
   publish_location = db.BooleanProperty(required=False, default=False,
       verbose_name=ugettext('Publish my location'))
   publish_location.help_text = ugettext(
-      'Indicates whether the user agreed to publish location.')
+      'By checking this box, you are agreeing to allow the Program Owner'
+      ' to display your location (City, State/Province, Country level only)'
+      ' on any map. For instance on the map linking Students to Mentors or'
+      ' by showing your location on your public profile page in the system.')
   publish_location.group = ugettext("2. Contact Info (Private)")
 
   #: Optional field containing a separate shipping street address; kept
--- a/app/soc/models/student.py	Sun Apr 12 00:18:19 2009 +0000
+++ b/app/soc/models/student.py	Sun Apr 12 00:18:38 2009 +0000
@@ -40,6 +40,15 @@
   school_name = db.StringProperty(required=True, 
       verbose_name=ugettext('School Name'))
   school_name.group = ugettext("5. Education")
+  school_name.help_text = ugettext(
+      'Please enter the full name of your school, college or university in'
+      ' this field. Please use the complete formal name of your school, e.g.'
+      ' UC Berekeley instead of Cal or UCB. It would be most wonderful if you'
+      ' could provide your school\'s name in English, as all the program '
+      'administrators speak English as their first language and it will make'
+      ' it much easier for us to assemble program statistics, etc., later if'
+      ' we can easily read the name of your school.')
+
   school_country = db.StringProperty(required=True,
       verbose_name=ugettext('School Country/Territory'),
       choices=countries.COUNTRIES_AND_TERRITORIES)