Start of inventory app page.
[htsworkflow.git] / htsworkflow / frontend / inventory / urls.py
index 844208ef41b0c8b39888ef9cb063fc7655e21ca3..18f38a972e1a005b27d67bf1c7bfd9c79872887f 100644 (file)
@@ -1,5 +1,11 @@
 from django.conf.urls.defaults import *
 
 urlpatterns = patterns('',
-     (r'^lts/link/(?P<flowcell>.+)/(?P<serial>.+)/$', 'htsworkflow.frontend.inventory.views.link_flowcell_and_device'),                                                                                                 
+    # DATA
+     (r'^data/items/$', 'htsworkflow.frontend.inventory.views.data_items'),
+    # REMOTE LINKING
+     (r'^lts/link/(?P<flowcell>.+)/(?P<serial>.+)/$', 'htsworkflow.frontend.inventory.views.link_flowcell_and_device'),
+     
+    # INDEX
+     (r'^$', 'htsworkflow.frontend.inventory.views.index')
     )