sdi/site/urls.py
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 12:02:42 +0530
branchanoop
changeset 246 3a32df4b3171
parent 241 ac1f13b2b3dc
permissions -rw-r--r--
added custom invitation mail page.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     2
246
3a32df4b3171 added custom invitation mail page.
Anoop Jacob Thomas<anoop@fossee.in>
parents: 241
diff changeset
     3
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout, send_cust_invi
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents: 109
diff changeset
     4
from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation, send_sagedays_confirm, confirm_sgd_participation
241
ac1f13b2b3dc included the url
nishanth
parents: 152
diff changeset
     5
from sage_days.sdi.views import send_acco_confirm, confirm_address
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     6
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     7
urlpatterns = patterns('',
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 23
diff changeset
     8
		       (r'^register/$', register),
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     9
                       (r'^complete/$', reg_complete),
64
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
    10
                       (r'^stats/$', list_stats),
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
    11
                       (r'^send_invi/$', send_invi),
246
3a32df4b3171 added custom invitation mail page.
Anoop Jacob Thomas<anoop@fossee.in>
parents: 241
diff changeset
    12
                       (r'^send_cust_invi/$', send_cust_invi),
66
8a5436485760 included urls for logging in and out
nishanth
parents: 64
diff changeset
    13
                       (r'^login/$', admin_login),
8a5436485760 included urls for logging in and out
nishanth
parents: 64
diff changeset
    14
                       (r'^logout/$', admin_logout),
86
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents: 66
diff changeset
    15
                       (r'^send_wsp_cnf/$', send_workshop_confirm),
96
8cccb8f7fff2 fixed a typo
nishanth
parents: 95
diff changeset
    16
                       (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
108
9363e5121f9b added the GET part of view for sending event confirmation emails
nishanth
parents: 96
diff changeset
    17
                       (r'^send_sgd_cnf/$', send_sagedays_confirm),
120
f9408ab30ace created the basic view and template for confirming participation in sage days
nishanth
parents: 109
diff changeset
    18
                       (r'^cnf_sgd_ptc/(\w+)/$', confirm_sgd_participation),
152
86bfdb64edb5 created basic view for sending acco and added corresponding url
nishanth
parents: 120
diff changeset
    19
                       (r'^send_acco_cnf/$', send_acco_confirm),
241
ac1f13b2b3dc included the url
nishanth
parents: 152
diff changeset
    20
                       (r'^cnf_addr/(\w+)/$', confirm_address), 
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    21
                      )
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    22