app/soc/models/organization.py
changeset 2129 f6ca1647bff7
parent 2037 3f355dca3679
--- 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(