diff --git a/atlas/templates/atlas/collection_scores.html b/atlas/templates/atlas/collection_scores.html
index e8b84856..89a8d757 100644
--- a/atlas/templates/atlas/collection_scores.html
+++ b/atlas/templates/atlas/collection_scores.html
@@ -63,7 +63,7 @@
{% endfor %} {% endcomment %}
{% for cid in cids %}
{% with by_question|get_item:question|get_item:cid as ans_score %}
-
{{ans_score.1}} |
+ {{ans_score.1}} |
{% endwith %}
{% endfor %}
diff --git a/atlas/views.py b/atlas/views.py
index 62016b0f..887bce78 100755
--- a/atlas/views.py
+++ b/atlas/views.py
@@ -1459,7 +1459,7 @@ def collection_scores_cid(request, pk):
user_answers_marks[cid].append(answer_score)
user_answers_and_marks[cid].append((ans, answer_score))
- by_question[q][cid] = (ans, answer_score)
+ by_question[q][cid] = (ans, answer_score, ans.feedback)
user_scores = {}
user_scores_normalised = {}