This commit is contained in:
Ross
2021-12-19 23:05:44 +00:00
parent e8d7d5b118
commit ef0d87deb0
3 changed files with 55 additions and 25 deletions
+1 -1
View File
@@ -415,7 +415,7 @@ class ExamViews(View, LoginRequiredMixin):
raise PermissionDenied
return render(
request, "{}/exam_list.html".format(self.app_name), {"exams": exams}
request, "exam_list.html".format(self.app_name), {"exams": exams, "app_name": self.app_name}
)
@method_decorator(login_required)