app/soc/models/group_app.py
changeset 1085 0afbdd0905ef
parent 1080 d533408811ba
child 1199 4e69a5f30a9a
equal deleted inserted replaced
1084:9c4221f7b747 1085:0afbdd0905ef
    96       'What criteria do you use to select the members of your group?'
    96       'What criteria do you use to select the members of your group?'
    97       ' Please be as specific as possible.'))
    97       ' Please be as specific as possible.'))
    98   member_criteria.help_text = ugettext(
    98   member_criteria.help_text = ugettext(
    99     'Members include mentors, admininstrators, and the like.')
    99     'Members include mentors, admininstrators, and the like.')
   100 
   100 
   101   # property containing the state of the application
   101   # property containing the status of the application
   102   # completed means that the application has been processed into a real group
   102   # completed means that the application has been processed into a real group
   103   state = db.StringProperty(required=True, 
   103   status = db.StringProperty(required=True, 
   104       choices=['accepted','rejected','ignored','needs review','completed'],
   104       choices=['accepted','rejected','ignored','needs review','completed'],
   105       default='needs review',
   105       default='needs review',
   106       verbose_name=ugettext('Application Status'))
   106       verbose_name=ugettext('Application Status'))
   107 
   107 
   108   
   108