rollback url change

This commit is contained in:
Sanj 2012-01-01 14:49:46 +05:30
parent 220de9368c
commit 8eff9b8140

View File

@ -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<slug>[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: