summaryrefslogtreecommitdiff
path: root/yaksh/views.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/views.py')
-rw-r--r--yaksh/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/yaksh/views.py b/yaksh/views.py
index bcaaf5f..6c7a12e 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -2822,6 +2822,8 @@ def _update_course_percent(course, user):
@email_verified
def preview_questionpaper(request, questionpaper_id):
user = request.user
+ if not is_moderator(user):
+ raise Http404('You are not allowed to view this page!')
paper = QuestionPaper.objects.get(id=questionpaper_id)
if not paper.quiz.creator == user:
raise Http404('This questionpaper does not belong to you')