diff -r ded4850776c8 -r f46b689e19eb app/soc/views/helper/redirects.py --- a/app/soc/views/helper/redirects.py Wed Jan 21 19:45:13 2009 +0000 +++ b/app/soc/views/helper/redirects.py Wed Jan 21 19:53:23 2009 +0000 @@ -56,8 +56,8 @@ return '/%s/show/%s' % ( params['url_name'], entity.key().name()) - - + + def getExportRedirect(entity, params): """Returns the export redirect for the specified entity. """ @@ -65,7 +65,7 @@ return '/%s/export/%s' % ( params['url_name'], entity.key().name()) - + def getReviewRedirect(entity, params): """Returns the redirect to review the specified entity """ @@ -90,3 +90,12 @@ return '/%s/create/%s/%s' % ( entity.role, entity.scope_path, entity.link_id) + + +def getApplicantRedirect(entity, params): + """Returns the redirect for processing accepted Applications. + """ + + return '/%s/applicant/%s' % ( + params['url_name'], entity.link_id) +