diff -r 91bc8521e3cb -r 7c3f54ce68af web/hdalab/urls.py --- a/web/hdalab/urls.py Thu Oct 04 12:25:12 2012 +0200 +++ b/web/hdalab/urls.py Thu Oct 11 15:42:38 2012 +0200 @@ -25,7 +25,6 @@ url(r'^facettes/', TemplateView.as_view(template_name="facettes.html"), name='facettes'), url(r'^categories/', TemplateView.as_view(template_name="categories.html"), name='categories'), - url(r'^completion/', TemplateView.as_view(template_name="completion.html"), name='completion'), url(r'^$', TemplateView.as_view(template_name="index.html"), name='home'), ) @@ -37,5 +36,4 @@ (r'^a/catsearch$', 'catsearch', {}, 'cat_search'), (r'^a/cattree$', 'cattree', {}, 'cat_tree'), (r'^a/filltree$', 'filltree', {}, 'fill_tree'), - (r'^a/contentsbytag$', 'contentsbytag', {}, 'contentsbytag'), )