urls.py
branchanoop
changeset 26 212fcba4459e
parent 16 91518c60131d
child 31 ec540dfbfe78
--- a/urls.py	Sat May 29 19:35:49 2010 +0530
+++ b/urls.py	Thu Jun 03 19:06:14 2010 +0530
@@ -4,7 +4,7 @@
 from django.contrib import admin
 admin.autodiscover()
 
-from sage_days.sdi.views import register
+from sage_days.sdi.views import register, homepage
 from sage_days.settings import APACHE_URL_PREFIX as aup
 
 urlpatterns = patterns('',
@@ -17,6 +17,6 @@
 
     # Uncomment the next line to enable the admin:
     (r'^administration/', include(admin.site.urls)),
-
+    (r'^$',homepage),
     (r'^registration/', include('sage_days.sdi.site.urls')),
 )