sdi/site/urls.py
branchanoop
changeset 246 3a32df4b3171
parent 241 ac1f13b2b3dc
equal deleted inserted replaced
245:30053a24a92a 246:3a32df4b3171
     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, send_cust_invi
     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, confirm_address
     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),
    11                        (r'^send_invi/$', send_invi),
    11                        (r'^send_invi/$', send_invi),
       
    12                        (r'^send_cust_invi/$', send_cust_invi),
    12                        (r'^login/$', admin_login),
    13                        (r'^login/$', admin_login),
    13                        (r'^logout/$', admin_logout),
    14                        (r'^logout/$', admin_logout),
    14                        (r'^send_wsp_cnf/$', send_workshop_confirm),
    15                        (r'^send_wsp_cnf/$', send_workshop_confirm),
    15                        (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
    16                        (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
    16                        (r'^send_sgd_cnf/$', send_sagedays_confirm),
    17                        (r'^send_sgd_cnf/$', send_sagedays_confirm),