diff -r 4f1d179f39ae -r b661dc8ffd5f app/soc/views/helper/redirects.py --- a/app/soc/views/helper/redirects.py Thu Jan 29 16:12:57 2009 +0000 +++ b/app/soc/views/helper/redirects.py Thu Jan 29 18:10:21 2009 +0000 @@ -147,6 +147,16 @@ return result +def getManageRedirect(entity, params): + """Returns the redirect for managing the given entity. + """ + + result = '/%s/manage/%s' % ( + params['url_name'], entity.key().name()) + + return result + + def getSelectRedirect(entity, params): """Returns the pick redirect for the specified entity. """