sdi/site/urls.py
author nishanth
Fri, 03 Sep 2010 16:23:17 +0530
branchanoop
changeset 241 ac1f13b2b3dc
parent 152 86bfdb64edb5
child 246 3a32df4b3171
permissions -rw-r--r--
included the url

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, confirm_wsp_participation, send_sagedays_confirm, confirm_sgd_participation
from sage_days.sdi.views import send_acco_confirm, confirm_address

urlpatterns = patterns('',
		       (r'^register/$', register),
                       (r'^complete/$', reg_complete),
                       (r'^stats/$', list_stats),
                       (r'^send_invi/$', send_invi),
                       (r'^login/$', admin_login),
                       (r'^logout/$', admin_logout),
                       (r'^send_wsp_cnf/$', send_workshop_confirm),
                       (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
                       (r'^send_sgd_cnf/$', send_sagedays_confirm),
                       (r'^cnf_sgd_ptc/(\w+)/$', confirm_sgd_participation),
                       (r'^send_acco_cnf/$', send_acco_confirm),
                       (r'^cnf_addr/(\w+)/$', confirm_address), 
                      )