diff -r d23379c80b48 -r 3f355dca3679 app/soc/models/organization.py --- a/app/soc/models/organization.py Mon Mar 30 22:38:08 2009 +0000 +++ b/app/soc/models/organization.py Mon Mar 30 22:52:15 2009 +0000 @@ -62,3 +62,12 @@ slots_desired.help_text = ugettext( 'The amount of slots desired by this organization.') + nr_applications = db.IntegerProperty(required=False, default=0, + verbose_name=ugettext('Amount of applications received')) + nr_applications.help_text = ugettext( + 'The amount of applications received by this organization.') + + nr_mentors = db.IntegerProperty(required=False, default=0, + verbose_name=ugettext('Amount of mentors assigned')) + nr_mentors.help_text = ugettext( + 'The amount of mentors assigned to a proposal by this organization.')