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

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

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

{{ question.question_type }}

{% if question.structure %} Structure: {{question.structure}}
{% endif %} Primary answer: {{question.get_primary_answer}}
{% if question.answer_help %}
Marking help:
{{question.answer_help|safe}}
{% endif %} {% comment %}
Suggest incorrect answers: {% for word in words_suggest_incorrect %} {{word}}(+), {% endfor %}
{% include "anatomy/question_detail.html#suggest-incorrect-form" %}
{% endcomment %}
{% 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 %} {% if answer in answer_suggest_incorrect %}
  • {{ answer }}
  • {% else %}
  • {{ answer }}
  • {% endif %} {% 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 %} {% block js %} {% endblock %} {% block css %} {% endblock css %}