equal
deleted
inserted
replaced
50 # rejected : This request has been rejected by either the user or the group |
50 # rejected : This request has been rejected by either the user or the group |
51 # ignored : The request has been ignored by the group and will not give |
51 # ignored : The request has been ignored by the group and will not give |
52 # the user access to create the role |
52 # the user access to create the role |
53 state = db.StringProperty(required=True, default='new', |
53 state = db.StringProperty(required=True, default='new', |
54 choices=['new', 'group_accepted', 'completed', 'rejected','ignored']) |
54 choices=['new', 'group_accepted', 'completed', 'rejected','ignored']) |
55 state.help_text = ugettext_lazy( |
55 state.help_text = ugettext_lazy('Shows the state of the request') |
56 'Shows the state of the request') |
|
57 |
56 |
58 |
57 |