diff -r 19c24508c398 -r 8914adaa93a7 app/soc/models/org_app.py --- a/app/soc/models/org_app.py Sat Jan 10 13:28:04 2009 +0000 +++ b/app/soc/models/org_app.py Sat Jan 10 13:50:41 2009 +0000 @@ -39,7 +39,18 @@ approach. At that time, existing OrgApplication entities will be migrated (converted) to their new representations in the Datastore. """ + + prior_participation = db.TextProperty(required=False, + verbose_name=ugettext_lazy( + 'Has your group participated previously?' + ' If so, please summarize your involvement and any past successes' + ' and failures.')) + prior_application = db.TextProperty(required=False, + verbose_name=ugettext_lazy( + 'If your group has not previously participated, have you applied in' + ' the past? If so, for what sort of participation?')) + license_name = db.StringProperty(required=True, verbose_name=ugettext_lazy( 'What license does your organization use?'))