diff -r 94b64c07f7ce -r 393891d794e2 app/soc/models/organization.py --- a/app/soc/models/organization.py Sun Mar 08 21:59:57 2009 +0000 +++ b/app/soc/models/organization.py Sun Mar 08 23:58:27 2009 +0000 @@ -56,3 +56,9 @@ verbose_name=ugettext('Slots allocated')) slots.help_text = ugettext( 'The amount of slots allocated to this organization.') + + slots_desired = db.IntegerProperty(required=False, default=0, + verbose_name=ugettext('Slots desired')) + slots_desired.help_text = ugettext( + 'The amount of slots desired by this organization.') +