sdi/site/urls.py
author anoop
Thu, 03 Jun 2010 19:08:31 +0530
branchanoop
changeset 27 48a86d8956f7
parent 26 212fcba4459e
child 56 7dfacad8adee
permissions -rw-r--r--
added base.html and did needed changes, (forgot to add files in previous commit).
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