From e89067ecba34a243287850c4dffa857a9c1e81a1 Mon Sep 17 00:00:00 2001 From: Ross Date: Tue, 7 Dec 2021 16:29:12 +0000 Subject: [PATCH] . --- anatomy/templates/anatomy/mark.html | 95 ++++++++++++++++------------- 1 file changed, 51 insertions(+), 44 deletions(-) diff --git a/anatomy/templates/anatomy/mark.html b/anatomy/templates/anatomy/mark.html index 77a6ea72..4c4dcd45 100644 --- a/anatomy/templates/anatomy/mark.html +++ b/anatomy/templates/anatomy/mark.html @@ -1,49 +1,56 @@ {% extends 'anatomy/exams.html' %} {% block content %} -

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

-View Edit Admin Edit -

{{ question.question_type }}

+

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

+ View Edit Admin Edit +

{{ question.question_type }}

-
-
-
-
{% csrf_token %} - Click each answer to toggle through marks awarded (as per colour) -
- Unmarked: -
    - {% for answer in user_answers %} -
  • {{ answer }}
  • - {% endfor %} -
- Marked: -
    - {% for answer in correct_answers %} -
  • {{ answer }}
  • - {% endfor %} - {% for answer in half_mark_answers %} -
  • {{ answer }}
  • - {% endfor %} - {% for answer in incorrect_answers %} -
  • {{ answer }}
  • - {% endfor %} -
-
Key: 2 Marks, 1 - Mark, 0 Marks
- {% if question_details.current > 1 %} - - {% endif %} - - {% if question_details.current >= question_details.total %} - {% else %} - - - {% endif %} +
- - {{ form.as_p }} - - -
-{% endblock %} \ No newline at end of file +
+
{% csrf_token %} + Click each answer to toggle through marks awarded (as per colour) + {% if not review %} + {% if unmarked_exam_answers_only %} + Showing unmarked exam answers only (view all answers for question) + {% else %} + Showing all answers (view unmarked exam answers only) + {% endif %} + {% endif %} +
+ Unmarked: +
    + {% for answer in user_answers %} +
  • {{ answer }}
  • + {% endfor %} +
+ Marked: +
    + {% for answer in correct_answers %} +
  • {{ answer }}
  • + {% endfor %} + {% for answer in half_mark_answers %} +
  • {{ answer }}
  • + {% endfor %} + {% for answer in incorrect_answers %} +
  • {{ answer }}
  • + {% endfor %} +
+
Key: 2 Marks, 1 + Mark, 0 Marks
+ {% if question_details.current > 1 %} + + {% endif %} + + {% if question_details.current >= question_details.total %} + {% else %} + + + {% endif %} +
+ + {{ form.as_p }} + +
+
+{% endblock %}