app/soc/models/group_app.py
changeset 1232 3bce6205e24e
parent 1229 ec3768cbf369
child 1248 f318538394d9
--- 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'))