diff --git a/anatomy/templates/anatomy/question_detail.html b/anatomy/templates/anatomy/question_detail.html
index a471602e..a1aff538 100644
--- a/anatomy/templates/anatomy/question_detail.html
+++ b/anatomy/templates/anatomy/question_detail.html
@@ -13,7 +13,7 @@
{% if not question.image_annotations %}
No image annotations defined.
-
If important markers or arrows are not burned onto the image, please add annotations using the image annotation tool and click Save Annotations. Please note not all questions required image annotations.
+
If important markers or arrows are not burned onto the image, please add annotations using the image annotation tool and click Save Annotations. Please note not all questions required image annotations in which case you can ignore this message.
{% endif %}
@@ -48,6 +48,15 @@
{% endif %}
+
+
Answers
@@ -64,7 +73,8 @@
{% for answer in question.answers.all|dictsortreversed:"status" %}
-
+ {% comment %}Add visual mark state classes consistent with mark2{% endcomment %}
+
{% if answer.status == "0" %}
@@ -80,7 +90,17 @@
{{ answer.answer }}
{% endif %}
|
- {{ answer.get_status_display|default:answer.status }} |
+
+ {% 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 %}
|