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,