web/hdalab/urls.py
changeset 253 1113c3874dd6
parent 252 a46461f8a74f
--- a/web/hdalab/urls.py	Thu Oct 11 18:22:45 2012 +0200
+++ b/web/hdalab/urls.py	Thu Oct 18 18:05:56 2012 +0200
@@ -27,6 +27,8 @@
     url(r'^categories/', TemplateView.as_view(template_name="categories.html"), name='categories'),
     url(r'^thesaurus/', TemplateView.as_view(template_name="thesaurus.html"), name='thesaurus'),
     url(r'^$', TemplateView.as_view(template_name="index.html"), name='home'),
+    
+    url(r'^notice/(?P<hda_id>[\w-]+)$', 'hdalab.views.pages.datasheet', name='notice')
 
 )