sdi/site/urls.py
branchanoop
changeset 241 ac1f13b2b3dc
parent 152 86bfdb64edb5
child 246 3a32df4b3171
equal deleted inserted replaced
240:b29465f479ea 241:ac1f13b2b3dc
     1 from django.conf.urls.defaults import *
     1 from django.conf.urls.defaults import *
     2 
     2 
     3 from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout
     3 from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout
     4 from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation, send_sagedays_confirm, confirm_sgd_participation
     4 from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation, send_sagedays_confirm, confirm_sgd_participation
     5 from sage_days.sdi.views import send_acco_confirm
     5 from sage_days.sdi.views import send_acco_confirm, confirm_address
     6 
     6 
     7 urlpatterns = patterns('',
     7 urlpatterns = patterns('',
     8 		       (r'^register/$', register),
     8 		       (r'^register/$', register),
     9                        (r'^complete/$', reg_complete),
     9                        (r'^complete/$', reg_complete),
    10                        (r'^stats/$', list_stats),
    10                        (r'^stats/$', list_stats),
    14                        (r'^send_wsp_cnf/$', send_workshop_confirm),
    14                        (r'^send_wsp_cnf/$', send_workshop_confirm),
    15                        (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
    15                        (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
    16                        (r'^send_sgd_cnf/$', send_sagedays_confirm),
    16                        (r'^send_sgd_cnf/$', send_sagedays_confirm),
    17                        (r'^cnf_sgd_ptc/(\w+)/$', confirm_sgd_participation),
    17                        (r'^cnf_sgd_ptc/(\w+)/$', confirm_sgd_participation),
    18                        (r'^send_acco_cnf/$', send_acco_confirm),
    18                        (r'^send_acco_cnf/$', send_acco_confirm),
       
    19                        (r'^cnf_addr/(\w+)/$', confirm_address), 
    19                       )
    20                       )
    20 
    21