{% extends 'anatomy/base.html' %} {% load partials %} {% block content %} {% load static %} {% include 'anatomy/question_link_header.html' %}
Image 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.
Question
Created: {{ question.created_date|date:"d/m/Y" }}
Type: {{ question.question_type }}
Primary answer
{{ question.get_primary_answer }}
Answers
Show answers {% for answer in question.answers.all|dictsortreversed:"status" %} {% empty %} {% endfor %}
AnswerScore
{% if answer.status == "0" %}
{{ answer.answer }}
{% else %}
{{ answer.answer }}
{% endif %}
{{ answer.get_status_display|default:answer.status }} {% if answer.proposed %}
{% 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
{% for exam in question.exams.all %} {{ exam }} {% empty %} No exams {% endfor %}
{% include 'question_notes.html' %}
Annotation JSON
{% if question.image_annotations %}
{{ question.image_annotations }}
{% else %}No saved annotations.{% endif %}
{% endblock %} {% block css %} {% endblock css %}