sdi/site/urls.py
author nishanth
Mon, 07 Jun 2010 15:13:16 +0530
branchanoop
changeset 64 3650417b0fda
parent 58 a9f5048830f6
child 66 8a5436485760
permissions -rw-r--r--
removed the admin_url_prefix thingy
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
58
a9f5048830f6 fixed a bug
nishanth
parents: 56
diff changeset
     3
from sage_days.sdi.views import register, reg_complete, list_stats, homepage, send_invi
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     4
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     5
urlpatterns = patterns('',
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 23
diff changeset
     6
		       (r'^register/$', register),
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     7
                       (r'^complete/$', reg_complete),
64
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
     8
                       (r'^stats/$', list_stats),
3650417b0fda removed the admin_url_prefix thingy
nishanth
parents: 58
diff changeset
     9
                       (r'^send_invi/$', send_invi),
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    10
                      )
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
    11