From 8a6e05a48a510109ee47996321c9377dbd241cba Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 2 Apr 2022 23:32:03 +0100 Subject: [PATCH] . --- atlas/templates/atlas/collection_headers.html | 2 +- atlas/urls.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/atlas/templates/atlas/collection_headers.html b/atlas/templates/atlas/collection_headers.html index 24f076c3..b962b52b 100644 --- a/atlas/templates/atlas/collection_headers.html +++ b/atlas/templates/atlas/collection_headers.html @@ -1,7 +1,7 @@ {% if request.user.is_authenticated %} Collection: {{collection.name}}-> Overview / -Mark / +Mark / Scores / Candidates
diff --git a/atlas/urls.py b/atlas/urls.py index 517555bd..9ec4035a 100755 --- a/atlas/urls.py +++ b/atlas/urls.py @@ -20,7 +20,8 @@ urlpatterns = [ path("collection/", views.collection_detail, name="collection_detail"), path("collection//take", views.collection_take, name="collection_take"), path("collection//candidates", views.collection_candidates, name="collection_candidates"), - path("collection//mark", views.collection_mark_cid, name="collection_mark_cid"), + path("collection//mark", views.collection_mark_overview, name="collection_mark_overview"), + path("collection//mark/", views.collection_mark_question, name="collection_mark_question"), path("collection//scores", views.collection_scores_cid, name="collection_scores_cid"), path("collection//take//", views.collection_take_overview, name="collection_take_overview"), path("collection//", views.collection_case_view, name="collection_case_view"),