This commit is contained in:
Ross
2021-03-11 12:54:42 +00:00
parent e23374678e
commit fc87a25516
+1 -1
View File
@@ -335,7 +335,7 @@ class ExamViews(View, LoginRequiredMixin):
if self.question_type == "long":
h = {}
for question in exam.exam_questions.all():
h[question.pk] = question.json_creation_time
h[question.pk] = question.json_creation_time.isoformat()
json["multi_question_json"] = h
active_exams["exams"].append( json )