{% extends 'shorts/exams.html' %} {% load crispy_forms_tags %} {% load help_tags %} {% block content %} View Edit {% if request.user.is_superuser %} Admin Edit Admin Edit (user answer) {% endif %}

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

{% if discrepancy_form %} {% endif %} {% help "Help" %}

Marking guidance for the 2B exam can be viewed on the RCR site at here

For convienience the info is also copied below:

Ideally each question will have individual marking guidance that will be shown below.

{% endhelp %} {% if not next_unmarked_id and not unmarked %} {% endif %}
Question Details

History: {{ question.history }}

Region: {{ question.get_regions }}

Examination: {{ question.get_examinations }}

Abnormality: {{ question.get_abnormalities }}

Images:
{% for image in question.images.all %}
Image {{ forloop.counter }} {% if image.description %} ({{image.description}}){% endif %} {% if image.feedback_image %} Feedback image {% endif %}
{% endfor %}

Feedback: {{ question.feedback }}

Marking Guidance
{{ question.marking_guidance | safe }}
User Answer
{{ answer.answer }}
{% csrf_token %} {{ form|crispy }} {% if next_unmarked_id %} {% else %} {% if not unmarked %} Success! Marking question complete. Return to marking overview {% endif %} {% endif %}
{% if previous_answer_id %} Previous candidate {% endif %} {% if next_answer_id %} Next candidate {% endif %} {% endblock %}