diff --git a/sbas/templates/sbas/exam_scores_user.html b/sbas/templates/sbas/exam_scores_user.html
index aa0de5c9..6a1665e8 100644
--- a/sbas/templates/sbas/exam_scores_user.html
+++ b/sbas/templates/sbas/exam_scores_user.html
@@ -6,11 +6,9 @@
Candidate: {{ cid }}
Answers:
- {% for question, ans in answers_and_marks %}
+ {% for question, a, score, correct_answer in answers_and_marks %}
- Question {{forloop.counter}} - {{ question.stem }}
- {% for a, score, correct_answer in ans %}
Correct answer: {{correct_answer}}
{{a}} (Score: {{score}})
- {% endfor %}
{% endfor %}
Total mark: {{ total_score }} / {{max_score}}