From 70069fc58d31ba0f0f59624b877e4845ba95875a Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 19 Aug 2021 12:51:07 +0100 Subject: [PATCH] . --- rapids/templates/rapids/exam_scores_user.html | 45 +++++++++++++++++-- 1 file changed, 42 insertions(+), 3 deletions(-) diff --git a/rapids/templates/rapids/exam_scores_user.html b/rapids/templates/rapids/exam_scores_user.html index bf37d07f..a8fbde2c 100644 --- a/rapids/templates/rapids/exam_scores_user.html +++ b/rapids/templates/rapids/exam_scores_user.html @@ -1,15 +1,22 @@ {% extends 'rapids/base.html' %} {% block content %} -
+
+
+
+
Answers:

Exam: {{ exam.name }}

Candidate: {{ cid }}

Answers:
    {% for ans, score, correct_answer in answers_and_marks %} -
  • Question {{forloop.counter}} - Correct answer: {{ correct_answer }}
  • -
    {{ans}}
    ({{score}})
    +
  • Question {{forloop.counter}} - Correct answer: {{ + correct_answer }}
  • + +
    {{ans}}
    ({{score}}) +
    + View {% endfor %}

Total mark: {{ total_score }} / {{max_score}} @@ -17,4 +24,36 @@ Other exams
+{% endblock %} +{% block js %} + {% endblock %} \ No newline at end of file