diff -r 7da77549bdeb -r f6ca1647bff7 app/soc/models/organization.py --- a/app/soc/models/organization.py Wed Apr 08 22:19:24 2009 +0000 +++ b/app/soc/models/organization.py Wed Apr 08 22:20:00 2009 +0000 @@ -62,6 +62,11 @@ slots_desired.help_text = ugettext( 'The amount of slots desired by this organization.') + slots_calculated = db.IntegerProperty(required=False, default=0, + verbose_name=ugettext('Slots calculated')) + slots_calculated.help_text = ugettext( + 'The amount of slots calculated for this organization.') + nr_applications = db.IntegerProperty(required=False, default=0, verbose_name=ugettext('Amount of applications received')) nr_applications.help_text = ugettext(