diff -r d826f7aed8f2 -r 3fa3384b5378 app/soc/models/student.py --- a/app/soc/models/student.py Sun Mar 22 20:13:19 2009 +0000 +++ b/app/soc/models/student.py Sun Mar 22 22:06:54 2009 +0000 @@ -18,6 +18,7 @@ __authors__ = [ '"Todd Larsen" ', + '"Sverre Rabbelier" ', '"Lennard de Rijk" ', ] @@ -71,3 +72,14 @@ #: School that they attend. school = db.ReferenceProperty(reference_class=soc.models.school.School, required=False, collection_name='students') + + can_we_contact_you = db.BooleanProperty(verbose_name=ugettext( + 'Can we contact you?')) + can_we_contact_you.help_text = ugettext( + 'Please check here if you would not mind being contacted by the Program' + ' Administrators for follow up with members of the press who would like' + ' to interview you about the program. You will not be contacted unless ' + ' you successfully complete your project.
' + 'Please note that checking this box has no effect on your chances' + ' of being accepted into the program.') + can_we_contact_you.group = ugettext("2. Contact Info (Private)")