This commit is contained in:
Ross
2021-03-11 13:02:45 +00:00
parent 4b621bf4e2
commit 076462a44d
+3 -3
View File
@@ -334,9 +334,9 @@ class ExamViews(View, LoginRequiredMixin):
if self.question_type == "long":
h = {}
for question in exam.exam_questions.all():
h[question.pk] = question.json_creation_time.isoformat()
h[question.pk] = "TEST"
#for question in exam.exam_questions.all():
# h[question.pk] = question.json_creation_time.isoformat()
# h[question.pk] = "TEST"
json["multi_question_json"] = h
active_exams["exams"].append( json )