app/soc/models/request.py
changeset 959 b6e8750c9407
parent 928 df051fc9d7a1
child 970 8b5611d5b053
equal deleted inserted replaced
958:b4309e3cb899 959:b6e8750c9407
    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