diff -r c8af52e4a047 -r 9d5d9e6b7fbf web/hdalab/urls.py --- a/web/hdalab/urls.py Tue Feb 28 11:43:29 2012 +0100 +++ b/web/hdalab/urls.py Tue Feb 28 18:51:58 2012 +0100 @@ -19,7 +19,8 @@ # Uncomment the next line to enable the admin: url(r'^admin/', include(admin.site.urls)), - url(r'^$', TemplateView.as_view(template_name="index.html")), + url(r'^facettes/', TemplateView.as_view(template_name="facettes.html"), name='facettes'), + url(r'^$', TemplateView.as_view(template_name="index.html"), name='home'), )