.
This commit is contained in:
+2
-1
@@ -287,7 +287,8 @@ def exam_finish(request, pk, cid):
|
||||
question_answer_tuples = []
|
||||
answer_count = 0
|
||||
for q in questions:
|
||||
if q in answer_question_map and answer_question_map[q].answer:
|
||||
#if q in answer_question_map and answer_question_map[q].answer:
|
||||
if q in answer_question_map: # might need to improve this
|
||||
question_answer_tuples.append((q, answer_question_map[q]))
|
||||
answer_count += 1
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user