diff --git a/www/conservancy/urls.py b/www/conservancy/urls.py index d2e9913d314d39812166f60c9ebfff2980044ba0..dc1dda5d04c021dd62e0605093c9ea69cadf0c39 100644 --- a/www/conservancy/urls.py +++ b/www/conservancy/urls.py @@ -27,6 +27,10 @@ import conservancy.static.views as static_views admin.autodiscover() urlpatterns = [ + # Uncomment these 3 lines when testing locally to get static content + #url(r'^css', static_views.index), + #url(r'^img', static_views.index), + #url(r'^js', static_views.index), url(r'^$', frontpage.view), url(r'^sponsors$', frontpage.view), url(r'^sponsors/$', sponsors.view),