sdi/site/urls.py
author nishanth
Sat, 05 Jun 2010 16:41:18 +0530
branchanoop
changeset 36 e291915aded8
parent 26 212fcba4459e
child 56 7dfacad8adee
permissions -rw-r--r--
python path in wsgi is changed
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
23
2aae8293f3a7 added list statiscs page
nishanth
parents: 22
diff changeset
     3
from sage_days.settings import ADMIN_URL_PREFIX as aup
26
212fcba4459e changed the app to work with apache + added base.html, and did needed changes.
anoop
parents: 23
diff changeset
     4
from sage_days.sdi.views import register, reg_complete, list_stats, homepage
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),
23
2aae8293f3a7 added list statiscs page
nishanth
parents: 22
diff changeset
     9
                       (r'%s/stats/$'%aup, list_stats),
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