app/soc/views/models/organization.py
changeset 2259 62676277db14
parent 2254 416da888eaa6
child 2283 f92942dfc28f
equal deleted inserted replaced
2258:280d2cf745f2 2259:62676277db14
   325 
   325 
   326     description = ugettext('List of accepted %s sent to %s ') % (
   326     description = ugettext('List of accepted %s sent to %s ') % (
   327         ap_params['name_plural'], org_entity.name)
   327         ap_params['name_plural'], org_entity.name)
   328 
   328 
   329     ap_params['list_description'] = description
   329     ap_params['list_description'] = description
   330     ap_params['list_action'] = (redirects.getPublicRedirect, ap_params)
   330     ap_params['list_action'] = (redirects.getReviewRedirect, ap_params)
   331 
   331 
   332     filter = {'org': org_entity,
   332     filter = {'org': org_entity,
   333               'status': 'accepted'}
   333               'status': 'accepted'}
   334 
   334 
   335     ap_list = lists.getListContent(
   335     ap_list = lists.getListContent(
   339 
   339 
   340     description = ugettext('List of rejected %s sent to %s ') % (
   340     description = ugettext('List of rejected %s sent to %s ') % (
   341         rp_params['name_plural'], org_entity.name)
   341         rp_params['name_plural'], org_entity.name)
   342 
   342 
   343     rp_params['list_description'] = description
   343     rp_params['list_description'] = description
   344     rp_params['list_action'] = (redirects.getPublicRedirect, rp_params)
   344     rp_params['list_action'] = (redirects.getReviewRedirect, rp_params)
   345 
   345 
   346     filter = {'org': org_entity,
   346     filter = {'org': org_entity,
   347               'status': 'rejected'}
   347               'status': 'rejected'}
   348 
   348 
   349     rp_list = lists.getListContent(
   349     rp_list = lists.getListContent(