From 2f70771763f78307f1777e2eb6b3ab929882b6e8 Mon Sep 17 00:00:00 2001 From: Ross Date: Fri, 1 Apr 2022 23:09:22 +0100 Subject: [PATCH] . --- atlas/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/atlas/views.py b/atlas/views.py index 5e0dba16..dc086afc 100755 --- a/atlas/views.py +++ b/atlas/views.py @@ -1076,7 +1076,7 @@ def collection_take_overview(request, pk, cid, passcode): question_answer_tuples = [] answer_count = 0 - for q in cases: + for q in case_details: if q in answer_question_map and answer_question_map[q].answer: question_answer_tuples.append((q, answer_question_map[q])) answer_count += 1