From 75501645bce394babe714e43da0cad34294ab8bb Mon Sep 17 00:00:00 2001 From: Ross Date: Thu, 19 Aug 2021 11:47:44 +0100 Subject: [PATCH] . --- rapids/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rapids/views.py b/rapids/views.py index 99cc46cf..fb4d1ec4 100755 --- a/rapids/views.py +++ b/rapids/views.py @@ -1136,7 +1136,7 @@ def question_review(request, pk, sk): """ Return a json representation of the question when the exam is active """ - exam = get_object_or_404(Rapid, pk=pk) + exam = get_object_or_404(Exam, pk=pk) question = exam.exam_questions.all()[sk] question_json = question.get_question_json(based=False)