app/soc/models/organization.py
changeset 2129 f6ca1647bff7
parent 2037 3f355dca3679
equal deleted inserted replaced
2128:7da77549bdeb 2129:f6ca1647bff7
    60   slots_desired = db.IntegerProperty(required=False, default=0,
    60   slots_desired = db.IntegerProperty(required=False, default=0,
    61       verbose_name=ugettext('Slots desired'))
    61       verbose_name=ugettext('Slots desired'))
    62   slots_desired.help_text = ugettext(
    62   slots_desired.help_text = ugettext(
    63       'The amount of slots desired by this organization.')
    63       'The amount of slots desired by this organization.')
    64 
    64 
       
    65   slots_calculated = db.IntegerProperty(required=False, default=0,
       
    66       verbose_name=ugettext('Slots calculated'))
       
    67   slots_calculated.help_text = ugettext(
       
    68       'The amount of slots calculated for this organization.')
       
    69 
    65   nr_applications = db.IntegerProperty(required=False, default=0,
    70   nr_applications = db.IntegerProperty(required=False, default=0,
    66       verbose_name=ugettext('Amount of applications received'))
    71       verbose_name=ugettext('Amount of applications received'))
    67   nr_applications.help_text = ugettext(
    72   nr_applications.help_text = ugettext(
    68       'The amount of applications received by this organization.')
    73       'The amount of applications received by this organization.')
    69 
    74