sdi/site/urls.py
branchanoop
changeset 95 ab554d46fd34
parent 86 1f0be76a18fc
child 96 8cccb8f7fff2
--- a/sdi/site/urls.py	Thu Jul 15 14:06:58 2010 +0530
+++ b/sdi/site/urls.py	Thu Jul 15 14:21:09 2010 +0530
@@ -1,7 +1,7 @@
 from django.conf.urls.defaults import *
 
 from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout
-from sage_days.sdi.views import send_workshop_confirm
+from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation
 
 urlpatterns = patterns('',
 		       (r'^register/$', register),
@@ -11,5 +11,6 @@
                        (r'^login/$', admin_login),
                        (r'^logout/$', admin_logout),
                        (r'^send_wsp_cnf/$', send_workshop_confirm),
+                       (r'^cnf_wsp_cnf/(\w+)/$', confirm_wsp_participation),
                       )