sdi/site/urls.py
author nishanth
Sat, 29 May 2010 10:13:58 +0530
changeset 10 e6aac19d8a25
child 22 1df4b0e0d45c
permissions -rw-r--r--
created site.urls in sdi and mapped urls.py accordingly

from django.conf.urls.defaults import *

from sage_days.sdi.views import register
urlpatterns = patterns('',
                       ('^register/$', register),
                      )