From 57cd33a15cfeab593e6ea18901d5c98c1b8baa54 Mon Sep 17 00:00:00 2001 From: Ross Date: Sat, 18 Dec 2021 19:54:23 +0000 Subject: [PATCH] . --- generic/views.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/generic/views.py b/generic/views.py index 61ccf86d..d829747d 100644 --- a/generic/views.py +++ b/generic/views.py @@ -893,10 +893,15 @@ class ExamViews(View, LoginRequiredMixin): # user_answers[cid].append("") # by_question[q].append(("", 0)) # continue - if s.normal: - ans = "Normal" + + if self.app_name == "rapids": + if s.normal: + ans = "Normal" + else: + ans = s.answer else: ans = s.answer + answer_score = s.get_answer_score() if answer_score == "unmarked": index = exam.get_question_index(q)