From 4b621bf4e24dc3df9dc35daf6b097463d0c7970b Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 11 Mar 2021 13:01:58 +0000 Subject: [PATCH] . --- generic/views.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/generic/views.py b/generic/views.py index ea8bfcba..931b7956 100644 --- a/generic/views.py +++ b/generic/views.py @@ -336,7 +336,8 @@ class ExamViews(View, LoginRequiredMixin): h = {} for question in exam.exam_questions.all(): h[question.pk] = question.json_creation_time.isoformat() - json["multi_question_json"] = "TEST" + h[question.pk] = "TEST" + json["multi_question_json"] = h active_exams["exams"].append( json ) if json == False: