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 }}
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 %}