From 857340947e2647b6f7b8eb47cff9e750c364316d Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 9 Sep 2021 12:29:38 +0100 Subject: [PATCH] . --- longs/templates/longs/exam_scores.html | 2 ++ longs/templates/longs/exam_scores_user.html | 1 + longs/views.py | 26 +++++++++++++++++++++ rapids/views.py | 2 +- 4 files changed, 30 insertions(+), 1 deletion(-) diff --git a/longs/templates/longs/exam_scores.html b/longs/templates/longs/exam_scores.html index 6d5d0147..ceb99e38 100644 --- a/longs/templates/longs/exam_scores.html +++ b/longs/templates/longs/exam_scores.html @@ -28,11 +28,13 @@ Candidate ID Score + Normalised score {% for user, value in user_answers_marks.items %} {{user}} {{user_scores|get_item:user}} + {{user_scores_normalised|get_item:user}} {% endfor %} diff --git a/longs/templates/longs/exam_scores_user.html b/longs/templates/longs/exam_scores_user.html index 0fca8f71..4a86cac3 100644 --- a/longs/templates/longs/exam_scores_user.html +++ b/longs/templates/longs/exam_scores_user.html @@ -11,6 +11,7 @@ {% endfor %}
Total mark: {{ total_score }} / {{max_score}} +
Normalised score: {{normalised_score}}

Answers