{% extends 'anatomy/base.html' %} {% block content %} {% load static %}
Edit Clone Delete Add Note {% if request.user.is_superuser %} Admin Edit User answers {% endif %} {% if exam %}
{% if previous > -1 %} Previous question {% endif %} Viewing question as part of exam: {{exam.name}} [{{pos}}/{{exam_length}}] {% if next %} Next question {% endif %}
{% endif %}
Created: {{ question.created_date|date:"d/m/Y" }}

{{ question.get_primary_answer }}

{{question.question_type}}

Answers (score): {% for answer in question.answers.all %} {{ answer }} ({{answer.status}}), {% endfor %}
Description: {{ question.description }}
Exams: {% for exam in question.exams.all %} {{ exam.name }} {% endfor %}
Modality: {{ question.modality }}
Region: {{ question.region }}
Structure: {{ question.structure }}
Body Part: {{ question.body_part }}
Author: {% for author in question.author.all %} {{ author }}, {% endfor %}
Open access: {{ question.open_access }}
{% include 'question_notes.html' %}
Annotation JSON (+/-): {% if question.image_annotations %}
{{ question.image_annotations }}
{% else %} No saved annotations. {% endif %}
{% endblock %}