feat: Enhance security by adding @login_required to multiple views and replacing print statements with logger.debug

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
Ross
2026-04-30 21:35:08 +01:00
parent 5d37cad48d
commit 2aff9516ac
13 changed files with 389 additions and 113 deletions
-1
View File
@@ -97,7 +97,6 @@ def question_detail(request, pk):
@login_required
def active_exams(request):
exams = Exam.objects.all()
print(exams)
active_exams = []