diff --git a/rapids/templates/rapids/mark.html b/rapids/templates/rapids/mark.html
index 00676944..14d9d34f 100644
--- a/rapids/templates/rapids/mark.html
+++ b/rapids/templates/rapids/mark.html
@@ -2,15 +2,26 @@
{% block content %}
Marking question {{question_details.current}} of {{question_details.total}}
-View Edit View Edit Admin
Edit
{% if question.normal %}
This question is normal
Answers will be automatically marked.
+
+The following answers have been submitted
+
+
+ {% for answer in incorrect_answers %}
+
+ {{ answer }}
+
+ {% endfor %}
+
{% else %}
This question is abnormal
-Answers marked as normal will be automatically marked.
+Answers marked as normal will be automatically marked.
Region: {{ question.get_regions }}, Abnormalities: {{ question.get_abnormalities }}
{% endif %}
Key: 1 Marks , 0.5
Mark , 0 Marks
- {% endif %}
- {% if question_details.current > 1 %}
- Previous
- {% endif %}
- Save
- {% if question_details.current >= question_details.total %}
- {% else %}
- Next
- Skip
- {% endif %}
+ {% endif %}
+ {% if question_details.current > 1 %}
+ Previous
+ {% endif %}
+ Save
+ {% if question_details.current >= question_details.total %}
+ {% else %}
+ Next
+ Skip
+ {% endif %}
{{ form.as_p }}