diff --git a/sbas/templates/sbas/exam_scores_user.html b/sbas/templates/sbas/exam_scores_user.html
index e2003dd6..aa0de5c9 100644
--- a/sbas/templates/sbas/exam_scores_user.html
+++ b/sbas/templates/sbas/exam_scores_user.html
@@ -8,11 +8,9 @@
{% for question, ans in answers_and_marks %}
- Question {{forloop.counter}} - {{ question.stem }}
-
- {% for q, a, score, correct_answer in ans %}
- - {{q}}: Correct answer: {{correct_answer}}
{{a}} (Score: {{score}})
+ {% for a, score, correct_answer in ans %}
+ Correct answer: {{correct_answer}}
{{a}} (Score: {{score}})
{% endfor %}
-
{% endfor %}
Total mark: {{ total_score }} / {{max_score}}
diff --git a/sbas/views.py b/sbas/views.py
index d114250c..c3b75406 100644
--- a/sbas/views.py
+++ b/sbas/views.py
@@ -200,7 +200,7 @@ def exam_scores_cid_user(request, pk, sk):
answers_marks.append(answer_score)
merged_ans = (ans, answer_score, correct_answer)
- answers_and_marks.append((q, *merged_ans))
+ answers_and_marks.append((q, merged_ans))
total_score = sum(answers_marks)