app/soc/models/organization.py
changeset 2037 3f355dca3679
parent 1994 bf64992d08c4
child 2129 f6ca1647bff7
equal deleted inserted replaced
2036:d23379c80b48 2037:3f355dca3679
    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   nr_applications = db.IntegerProperty(required=False, default=0,
       
    66       verbose_name=ugettext('Amount of applications received'))
       
    67   nr_applications.help_text = ugettext(
       
    68       'The amount of applications received by this organization.')
       
    69 
       
    70   nr_mentors = db.IntegerProperty(required=False, default=0,
       
    71       verbose_name=ugettext('Amount of mentors assigned'))
       
    72   nr_mentors.help_text = ugettext(
       
    73       'The amount of mentors assigned to a proposal by this organization.')