{% extends 'anatomy/base.html' %} {% block content %} {% load static %} {% if exam %}
{% if previous > -1 %} Previous question {% endif %} This question is part of exam: {{exam.name}} [{{pos}}/{{exam_length}}] {% if next %} Next question {% endif %}
{% endif %}
Edit Clone Delete Admin Edit
Created: {{ question.created_date }}

{{ question.GetPrimaryAnswer }}

{{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 user in question.author.all %} {{ author }}, {% endfor %}
Open access: {{ question.open_access }}
Annotation JSON (+/-):
{{ question.image_annotations }}
{% endblock %}