app/soc/views/helper/redirects.py
changeset 885 f46b689e19eb
parent 858 e79e7a22326f
child 891 3d40190f35b6
--- 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)
+