{% extends 'rapids/exams.html' %} {% block content %}

{% if review %}Reviewing{% else %}Marking{% endif %} question {{question_details.current}} of {{question_details.total}}

View Edit Admin Edit {% if unmarked_answers_bool %} {% endif %} {% if question.normal %}

This question is normal

Answers will be automatically marked.
{% if incorrect_answers %}

The following answers have been submitted for this question

{% endif %} {% else %}

This question is abnormal

Answers given as normal will be automatically marked.
Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities }}
[{{question.get_primary_answer}}] {% endif %}
{% csrf_token %} {% if not question.normal %} 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 %}
{% if not review %} Unmarked:
    {% for answer in user_answers %}
  • {{ answer }}
  • {% endfor %}
{% if not unmarked_exam_answers_only %} Marked:
    {% for answer in correct_answers %}
  • {{ answer }}
  • {% endfor %} {% for answer in half_mark_answers %}
  • {{ answer }}
  • {% endfor %} {% for answer in incorrect_answers %}
  • {{ answer }}
  • {% endfor %}
{% endif %} {% else %} To review:
    {% for answer, mark in review_user_answers %}
  • {{ answer }}
  • {% endfor %}
{% endif %}
Key: 2 Marks, 1 Mark, 0 Marks
{% endif %} {% if review and not question.normal %}
{% endif %} {% if question_details.current > 1 %} {% endif %} {% if question_details.current >= question_details.total %} {% else %} {% endif %} {{ form.as_p }}
{% endblock %}