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

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

View Edit {% if request.user.is_superuser %}Admin Edit{% endif %} {% if unmarked_answers_bool %} {% endif %}
Help

Unmarked questions will be shown below. To mark the question, click on the answer to toggle through the markers.

The colour of the answer will change to reflect the mark given.

Answers will be automatically marked.

By default only answers for the current exam will be shown. Click the link to view all answers.

Buttons

{% if question.normal %}

This question is normal

{% if incorrect_answers %}

The following answers have been submitted for this question

{% endif %} {% else %}

This question is abnormal

Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities }}
Primary answer: {{question.get_primary_answer}} {% endif %}
{% csrf_token %} {% if not question.normal %} {% 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 %} {% block js %} {% endblock %} {% block css %} {% endblock css %}