app/soc/models/group_app.py
changeset 1503 c8ebaacc2337
parent 1307 091a21cf3627
child 1544 5d23f0160fcd
--- a/app/soc/models/group_app.py	Thu Feb 26 04:29:56 2009 +0000
+++ b/app/soc/models/group_app.py	Thu Feb 26 08:38:09 2009 +0000
@@ -99,11 +99,13 @@
 
   # 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
+  # pre-accepted: used to indicate that the application has been accepted
   # but the group cannot be made yet.
-  status = db.StringProperty(required=True, 
+  # pre-rejected: used to indicate that the application has been rejected
+  # but the applicant has not been informed yet.
+  status = db.StringProperty(required=True,
       choices=['accepted','rejected','ignored','needs review','completed',
-          'pre-accepted'],
+          'pre-accepted', 'pre-rejected'],
       default='needs review',
       verbose_name=ugettext('Application Status'))