sdi/site/urls.py
author nishanth
Sat, 29 May 2010 15:59:50 +0530
changeset 22 1df4b0e0d45c
parent 10 e6aac19d8a25
child 23 2aae8293f3a7
permissions -rw-r--r--
added the registration complete 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
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     3
from sage_days.sdi.views import register, reg_complete
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('',
22
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     6
                       (r'^register/$', register),
1df4b0e0d45c added the registration complete page
nishanth
parents: 10
diff changeset
     7
                       (r'^complete/$', reg_complete),
10
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     8
                      )
e6aac19d8a25 created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
diff changeset
     9