From ca472d8577b431d8cc2988c5adf6687cd0039acb Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 31 Jul 2021 11:15:45 +0100 Subject: [PATCH] . --- longs/templates/longs/mark_answer.html | 3 ++- longs/views.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/longs/templates/longs/mark_answer.html b/longs/templates/longs/mark_answer.html index e1b537cb..cdce2fe1 100644 --- a/longs/templates/longs/mark_answer.html +++ b/longs/templates/longs/mark_answer.html @@ -8,7 +8,8 @@

Marking question {{question_details.current}} of {{question_details.total}}

-Marking user: {{answer.cid}} +CID(s) to mark: { % for ans in unmarker % }{{ans.cid}},{% endfor %} +Marking CID: {{answer.cid}}
Mark Scheme diff --git a/longs/views.py b/longs/views.py index e73694a3..31616fd8 100755 --- a/longs/views.py +++ b/longs/views.py @@ -695,6 +695,7 @@ def mark_answer(request, pk, sk, tk): "question": question, "question_details": question_details, "next_unmarked_id": next_unmarked_id, + "unmarked": unmarked, }, )