diff --git a/atlas/templates/atlas/collection_detail.html b/atlas/templates/atlas/collection_detail.html index ecee8d75..11061385 100644 --- a/atlas/templates/atlas/collection_detail.html +++ b/atlas/templates/atlas/collection_detail.html @@ -2,6 +2,10 @@ {% block content %} {% if request.user.is_authenticated %} +Collection: {{collection.name}}-> Overview / +Mark / +Scores / +Candidates
Edit \ Delete diff --git a/atlas/urls.py b/atlas/urls.py index 25136b76..4129d655 100755 --- a/atlas/urls.py +++ b/atlas/urls.py @@ -19,6 +19,8 @@ urlpatterns = [ path("collection//update", views.CaseCollectionUpdate.as_view(), name="collection_update"), path("collection/", views.collection_detail, name="collection_detail"), path("collection//take", views.collection_take, name="collection_take"), + path("collection//mark", views.collection_mark_cid, name="collection_mark_cid"), + 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"), path("collection///take//", views.collection_case_view_take, name="collection_case_view_take"), diff --git a/atlas/views.py b/atlas/views.py index 352d3512..cc893f7b 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -1071,6 +1071,20 @@ def collection_take(request, pk): request, "atlas/collection_take.html", {"collection": collection} ) +def collection_mark_cid(request, pk): + collection = get_object_or_404(CaseCollection, pk=pk) + + return render( + request, "atlas/collection_take.html", {"collection": collection} + ) + +def collection_scores_cid(request, pk): + collection = get_object_or_404(CaseCollection, pk=pk) + + return render( + request, "atlas/collection_take.html", {"collection": collection} + ) + def collection_take_overview(request, pk, cid, passcode): collection = get_object_or_404(CaseCollection, pk=pk)