From c2f10712df7d0d06b40fba1fe43f0bfa976a7dfa Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 12 Dec 2021 18:35:14 +0000 Subject: [PATCH] . --- anatomy/models.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/anatomy/models.py b/anatomy/models.py index 0b38b1bd..a7f6a83c 100644 --- a/anatomy/models.py +++ b/anatomy/models.py @@ -379,6 +379,11 @@ class Exam(ExamBase): "type": "anatomy", } + if not self.exam_mode: + exam_questions[q.id]["answers"] = list( + q.get_correct_unstripped_answers() + ) + exam_json = { "eid": "anatomy/{}".format(self.id), "cached": False,