diff -r d826f7aed8f2 -r 3fa3384b5378 app/soc/models/org_admin.py --- a/app/soc/models/org_admin.py Sun Mar 22 20:13:19 2009 +0000 +++ b/app/soc/models/org_admin.py Sun Mar 22 22:06:54 2009 +0000 @@ -18,12 +18,15 @@ __authors__ = [ '"Lennard de Rijk" ', + '"Sverre Rabbelier" ', '"Pawel Solyga" ', ] from google.appengine.ext import db +from django.utils.translation import ugettext + import soc.models.program import soc.models.role @@ -35,3 +38,11 @@ #: A required property that defines the program that this org admin works for program = db.ReferenceProperty(reference_class=soc.models.program.Program, required=True, collection_name='org_admins') + + 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.') + can_we_contact_you.group = ugettext("2. Contact Info (Private)")