Current work on simplifying the inventory tracking page.
[htsworkflow.git] / htsworkflow / frontend / inventory / urls.py
index 49ede616e44a0ecce7f25ca5a4242cb4d9e48589..44f64874a63e4f56fb06e23dc1df4aa0632894d4 100644 (file)
@@ -7,8 +7,8 @@ urlpatterns = patterns('',
      (r'^lts/link/(?P<flowcell>.+)/(?P<serial>.+)/$', 'htsworkflow.frontend.inventory.views.link_flowcell_and_device'),
      
     # INDEX
-    (r'^(?P<uuid>[a-fA-F0-9]{32})/$', 'htsworkflow.frontend.inventory.views.item_summary_by_uuid'),
-    (r'^(?P<uuid>[a-fA-F0-9]{32})/print/$', 'htsworkflow.frontend.inventory.views.item_print'),
-    (r'^(?P<barcode_id>.+)/$', 'htsworkflow.frontend.inventory.views.item_summary_by_barcode'),
-    (r'^$', 'htsworkflow.frontend.inventory.views.index')
+    #(r'^(?P<uuid>[a-fA-F0-9]{32})/$', 'htsworkflow.frontend.inventory.views.item_summary_by_uuid'),
+    #(r'^(?P<uuid>[a-fA-F0-9]{32})/print/$', 'htsworkflow.frontend.inventory.views.item_print'),
+    #(r'^(?P<barcode_id>.+)/$', 'htsworkflow.frontend.inventory.views.item_summary_by_barcode'),
+    (r'^$', 'htsworkflow.frontend.inventory.views.category_index')
     )