pytask/urls.py
changeset 363 9b0812962133
parent 340 0f9d485609ac
child 396 08893f05cc3d
--- a/pytask/urls.py	Sun Jan 09 12:01:57 2011 +0530
+++ b/pytask/urls.py	Sun Jan 09 15:01:30 2011 +0530
@@ -5,6 +5,7 @@
 import pytask.profile.regbackend
 
 from pytask.profile.forms import CustomRegistrationForm
+from pytask.views import home_page
 
 from django.shortcuts import redirect
 
@@ -33,4 +34,5 @@
     (r'^accounts/', include('registration.urls')),
     (r'^profile/', include('pytask.profile.urls')),
     (r'^task/', include('pytask.taskapp.urls')),
+    (r'^$', home_page),
 )