Updated inventory to support display of inventory items based on uuid/barcode_id...
[htsworkflow.git] / htsworkflow / frontend / inventory / urls.py
1 from django.conf.urls.defaults import *
2
3 urlpatterns = patterns('',
4     # DATA
5      (r'^data/items/$', 'htsworkflow.frontend.inventory.views.data_items'),
6     # REMOTE LINKING
7      (r'^lts/link/(?P<flowcell>.+)/(?P<serial>.+)/$', 'htsworkflow.frontend.inventory.views.link_flowcell_and_device'),
8      
9     # INDEX
10     (r'^(?P<uuid>[a-fA-F0-9]{32})/$', 'htsworkflow.frontend.inventory.views.item_summary_by_uuid'),
11     (r'^(?P<uuid>[a-fA-F0-9]{32})/print/$', 'htsworkflow.frontend.inventory.views.item_print'),
12     (r'^(?P<barcode_id>.+)/$', 'htsworkflow.frontend.inventory.views.item_summary_by_barcode'),
13     (r'^$', 'htsworkflow.frontend.inventory.views.index')
14     )