{% extends 'anatomy/base.html' %} {% block content %} {% load static %} {% include 'anatomy/question_link_header.html' %}
{% if not question.image_annotations %} {% endif %} {% if can_edit %}
Image annotation help
Annotate the image using the right mouse button to click and drag an arrow. To remove an arrow drag it out of the image boundaries. Click Save Annotations to persist. If required use the middle button to zoom and the left button to pan.
{% endif %}
Question
Created: {{ question.created_date|date:"d/m/Y" }}
Type: {{ question.question_type }}
Primary answer
{% if question.primary_answer %} {% include 'anatomy/partials/primary_answer_display.html' %} {% else %}
{% endif %}
Answers
{% if can_edit %} Edit answers {% endif %}
Show answers {% for answer in question.answers.all|dictsortreversed:"status" %} {% comment %}Add visual mark state classes consistent with mark2{% endcomment %} {% empty %} {% endfor %}
AnswerScore
{% if answer.status == "0" %}
{{ answer.answer }}
{% else %}
{{ answer.answer }}
{% endif %}
{% if answer.status == '2' %} {{ answer.get_status_display|default:'Correct' }} {% elif answer.status == '1' %} {{ answer.get_status_display|default:'Half mark' }} {% elif answer.status == '0' %} {{ answer.get_status_display|default:'Incorrect' }} {% else %} {{ answer.get_status_display|default:'Unmarked' }} {% endif %} {% if answer.proposed and can_edit %}
{% endif %}
No stored answers
{% if question.answer_help %}
Answer help
{{ question.answer_help|safe }}
{% endif %}
{% include 'anatomy/partials/suggest_incorrect_collapsed.html' %}
Description
{{ question.description }}
Modality: {{ question.modality }}
Region: {{ question.region }}
Structure: {{ question.structure }}
Body part: {{ question.body_part }}
Open access: {{ question.open_access }}
Author: {% for author in question.author.all %}{{ author }}{% if not forloop.last %}, {% endif %}{% endfor %}
Exams
{% include 'anatomy/partials/exam_links.html' %} {% if can_edit %}
{% endif %}
{% include 'question_notes.html' %}
Annotation JSON
{% if question.image_annotations %} {% include 'atlas/partials/json_pretty.html' with json_value=question.image_annotations title='Image annotations' %} {% else %} No saved annotations. {% endif %}
{% endblock %} {% block css %} {% endblock css %}