This commit is contained in:
Ross
2021-10-16 09:38:07 +01:00
parent 3ead3f5e59
commit 08666856dd
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities
{% if not question.normal %} {% if not question.normal %}
Click each answer to toggle through marks awarded (as per colour)<br/> Click each answer to toggle through marks awarded (as per colour)<br/>
{% if exam_answers_only %} {% if exam_answers_only %}
Showing exam answers only <a href="{% url 'rapids:mark_all' exam.id question.pk %}">(view all)</a> Showing exam answers only <a href="{% url 'rapids:mark_all' exam.id question_number %}">(view all)</a>
{% else %} {% else %}
Showing all answers Showing all answers
{% endif %} {% endif %}
+1
View File
@@ -723,6 +723,7 @@ def mark(request, pk, sk, exam_answers_only=True):
"exam": exam, "exam": exam,
"form": form, "form": form,
"question": question, "question": question,
"question_number": n,
"question_details": question_details, "question_details": question_details,
"user_answers": unmarked_user_answers, "user_answers": unmarked_user_answers,
"correct_answers": correct_answers, "correct_answers": correct_answers,