app/soc/views/helper/redirects.py
changeset 1238 af56ae7397ab
parent 1229 ec3768cbf369
child 1254 6be0286ef003
--- a/app/soc/views/helper/redirects.py	Sat Feb 07 13:36:50 2009 +0000
+++ b/app/soc/views/helper/redirects.py	Sat Feb 07 13:40:20 2009 +0000
@@ -93,6 +93,12 @@
   return '/%s/review/%s' % (
       params['url_name'], entity.key().name())
 
+def getReviewOverviewRedirect(entity, params):
+  """Returns the redirect to the review_overview using the 
+     keyname of the specified entity.
+  """
+  return '/%s/review_overview/%s' % (
+      params['url_name'], entity.key().name())
 
 def getCreateRequestRedirect(entity, params):
   """Returns the create request redirect for the specified entity.