sdi/site/urls.py
author anoop
Thu, 03 Jun 2010 19:06:14 +0530
branchanoop
changeset 26 212fcba4459e
parent 23 2aae8293f3a7
child 56 7dfacad8adee
permissions -rw-r--r--
changed the app to work with apache + added base.html, and did needed changes.

from django.conf.urls.defaults import *

from sage_days.settings import ADMIN_URL_PREFIX as aup
from sage_days.sdi.views import register, reg_complete, list_stats, homepage

urlpatterns = patterns('',
		       (r'^register/$', register),
                       (r'^complete/$', reg_complete),
                       (r'%s/stats/$'%aup, list_stats),
                      )