# HG changeset patch # User Sverre Rabbelier # Date 1236385935 0 # Node ID b581fdfd6bb14a80938bb3f6754c3067d55c92be # Parent 6d6813e83756fd5a544b38056d68c4a31a7f28a0 Add slots to the organization model Patch by: Sverre Rabbelier diff -r 6d6813e83756 -r b581fdfd6bb1 app/soc/models/organization.py --- a/app/soc/models/organization.py Sat Mar 07 00:31:48 2009 +0000 +++ b/app/soc/models/organization.py Sat Mar 07 00:32:15 2009 +0000 @@ -51,3 +51,8 @@ 'The URL to the ideas list of your organization.') ideas.example_text = ugettext('For instance a link to a Melange public ' 'document or some other URL') + + slots = db.IntegerProperty(required=False, + verbose_name=ugettext('Slots allocated')) + slots.help_text = ugettext( + 'The amount of slots allocated to this organization.')