This commit is contained in:
Ross
2022-04-02 23:01:01 +01:00
parent 6dff09a9e5
commit acc6f4fc53
3 changed files with 20 additions and 0 deletions
+14
View File
@@ -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)