sdi/site/urls.py
author nishanth
Thu, 15 Jul 2010 14:28:25 +0530
branchanoop
changeset 96 8cccb8f7fff2
parent 95 ab554d46fd34
child 108 9363e5121f9b
permissions -rw-r--r--
fixed a typo
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
66
8a5436485760 included urls for logging in and out
nishanth
parents: 64
diff changeset
     3
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi, admin_login, admin_logout
95
ab554d46fd34 created basic view for confirmation of wsp participation
nishanth
parents: 86
diff changeset
     4
from sage_days.sdi.views import send_workshop_confirm, confirm_wsp_participation
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     5
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     6
urlpatterns = patterns('',
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 23
diff changeset
     7
		       (r'^register/$', register),
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     8
                       (r'^complete/$', reg_complete),
64
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
     9
                       (r'^stats/$', list_stats),
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
    10
                       (r'^send_invi/$', send_invi),
66
8a5436485760 included urls for logging in and out
nishanth
parents: 64
diff changeset
    11
                       (r'^login/$', admin_login),
8a5436485760 included urls for logging in and out
nishanth
parents: 64
diff changeset
    12
                       (r'^logout/$', admin_logout),
86
1f0be76a18fc added a view for sending confirmation for workshop
nishanth
parents: 66
diff changeset
    13
                       (r'^send_wsp_cnf/$', send_workshop_confirm),
96
8cccb8f7fff2 fixed a typo
nishanth
parents: 95
diff changeset
    14
                       (r'^cnf_wsp_ptc/(\w+)/$', confirm_wsp_participation),
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    15
                      )
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    16