This commit is contained in:
Ross
2021-09-12 10:43:33 +01:00
parent 4956156b65
commit 2a536f20d6
+1 -1
View File
@@ -762,7 +762,7 @@ def mark_answer(request, exam_id, question_number, cid, override=False):
if answer.mark.count() == 2 or override:
# if they do automatically update teh scoer
marks = set(answer.mark.values_list("score", flat=True))
if len(marks) > 1:
if len(marks) > 1 or override:
discrepancy_form = MarkLongQuestionSingleForm(initial={'score': answer.score })
return render(