diff -r ab19a8ad375f -r 3bce6205e24e app/soc/models/group_app.py --- a/app/soc/models/group_app.py Fri Feb 06 10:21:18 2009 +0000 +++ b/app/soc/models/group_app.py Fri Feb 06 10:24:45 2009 +0000 @@ -99,8 +99,11 @@ # property containing the status of the application # completed means that the application has been processed into a real group + # pre-accepted is used to indicate that the application has been accepted + # but the group cannot be made yet. status = db.StringProperty(required=True, - choices=['accepted','rejected','ignored','needs review','completed'], + choices=['accepted','rejected','ignored','needs review','completed', + 'pre-accepted'], default='needs review', verbose_name=ugettext('Application Status'))