diff -r 9c4221f7b747 -r 0afbdd0905ef app/soc/models/request.py --- a/app/soc/models/request.py Fri Jan 30 17:23:19 2009 +0000 +++ b/app/soc/models/request.py Fri Jan 30 17:38:28 2009 +0000 @@ -42,7 +42,7 @@ role_verbose.help_text = ugettext( 'This should be the verbose name of the role that is in this request') - # property that determines the state of the request + # property that determines the status of the request # new : new Request # group_accepted : The group has accepted this request # completed : This request has been handled either following a creation of @@ -50,8 +50,8 @@ # rejected : This request has been rejected by either the user or the group # ignored : The request has been ignored by the group and will not give # the user access to create the role - state = db.StringProperty(required=True, default='new', + status = db.StringProperty(required=True, default='new', choices=['new', 'group_accepted', 'completed', 'rejected','ignored']) - state.help_text = ugettext('Shows the state of the request') + status.help_text = ugettext('Shows the status of the request')