Name all of the view that we need to reverse
[htsworkflow.git] / samples / urls.py
index bc83238a72a5b8719b873f1316eb2ca71fcdde53..79e91f6bb2f083bf9b4471eff106a5ba97853ea8 100644 (file)
@@ -16,9 +16,9 @@ urlpatterns = [
     # View livrary list
     url(r'^$', library),
     url(r'^not_run/$', library_not_run),
-    url(r'^(?P<lib_id>\w+)/$', library_to_flowcells),
+    url(r'^(?P<lib_id>\w+)/$', library_to_flowcells, name='library_to_flowcells'),
     url(r"^library/(?P<library_id>\w+)/json$", library_json),
     url(r"^species/(?P<species_id>\w+)/json$", species_json),
-    url(r"^species/(?P<species_id>\w+)$", species),
+    url(r"^species/(?P<species_id>\w+)$", species, name='species'),
     url(r"^antibody/$", antibodies),
 ]