From 8138ad0c22f1202c9f0e933d20a5cad9833ae152 Mon Sep 17 00:00:00 2001 From: Johnathan Clementi Date: Wed, 6 Nov 2024 16:09:26 -0500 Subject: [PATCH] Add routing to scheme page #16 nit --- .../src/arches_lingo/components/schemes/SchemeBox.vue | 11 ++++++++++- arches_lingo/urls.py | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/arches_lingo/src/arches_lingo/components/schemes/SchemeBox.vue b/arches_lingo/src/arches_lingo/components/schemes/SchemeBox.vue index c815995..bc72576 100644 --- a/arches_lingo/src/arches_lingo/components/schemes/SchemeBox.vue +++ b/arches_lingo/src/arches_lingo/components/schemes/SchemeBox.vue @@ -1,4 +1,7 @@ diff --git a/arches_lingo/urls.py b/arches_lingo/urls.py index f1633d6..8ea2094 100644 --- a/arches_lingo/urls.py +++ b/arches_lingo/urls.py @@ -21,6 +21,7 @@ path("login", LingoRootView.as_view(), name="login"), path("advanced-search", LingoRootView.as_view(), name="advanced-search"), path("schemes", LingoRootView.as_view(), name="schemes"), + path("scheme/", LingoRootView.as_view(), name="scheme"), path("concept/", LingoRootView.as_view(), name="concept"), path("api/concept-tree", ConceptTreeView.as_view(), name="api-concepts"), path("api/search", ValueSearchView.as_view(), name="api-search"),