app/soc/models/organization.py
changeset 1760 393891d794e2
parent 1729 c5cfa7b3cdff
child 1994 bf64992d08c4
equal deleted inserted replaced
1759:94b64c07f7ce 1760:393891d794e2
    54 
    54 
    55   slots = db.IntegerProperty(required=False, default=0,
    55   slots = db.IntegerProperty(required=False, default=0,
    56       verbose_name=ugettext('Slots allocated'))
    56       verbose_name=ugettext('Slots allocated'))
    57   slots.help_text = ugettext(
    57   slots.help_text = ugettext(
    58       'The amount of slots allocated to this organization.')
    58       'The amount of slots allocated to this organization.')
       
    59 
       
    60   slots_desired = db.IntegerProperty(required=False, default=0,
       
    61       verbose_name=ugettext('Slots desired'))
       
    62   slots_desired.help_text = ugettext(
       
    63       'The amount of slots desired by this organization.')
       
    64