From 8eff9b814052b1ba8e573d42d035f8d19d5b6e12 Mon Sep 17 00:00:00 2001 From: Sanj Date: Sun, 1 Jan 2012 14:49:46 +0530 Subject: [PATCH] rollback url change --- itf/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/itf/urls.py b/itf/urls.py index b8e2d50..a8c17b1 100755 --- a/itf/urls.py +++ b/itf/urls.py @@ -16,7 +16,7 @@ urlpatterns = patterns('', # Example: # (r'^bhangar/', include('bhangar.foo.urls')), #(r'^search/', include('solango.urls')), - (r'^$', "frontpage.views.index"), + (r'^t/$', "frontpage.views.index"), (r'm/', include('insidepages.urls')), (r'^page/(?P[a-zA-Z].*?)/', 'pages.views.render_page'), (r'^contact/$', 'frontpage.views.contact'), @@ -58,7 +58,7 @@ urlpatterns = patterns('', # (r'^ajax_filtered_fields/', include('ajax_filtered_fields.urls')), # Uncomment the next line to enable the admin: (r'^test$', 'app.views.index'), -# (r'^$', 'festival.views.home') + (r'^$', 'festival.views.home') ) if settings.LOCAL_DEVELOPMENT: