summaryrefslogtreecommitdiff
path: root/exam/views.py
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-21 10:15:50 +0530
committerPrabhu Ramachandran2011-11-21 10:15:50 +0530
commit587fb65d126f5c12fd735dceca4420871239e52d (patch)
tree61ccf427f3ba8396f911cf0cb9f23cc0eed1e8b8 /exam/views.py
parent7de8141a6aa4f7039e8b1eb4f2b1e2db126e902e (diff)
downloadonline_test-587fb65d126f5c12fd735dceca4420871239e52d.tar.gz
online_test-587fb65d126f5c12fd735dceca4420871239e52d.tar.bz2
online_test-587fb65d126f5c12fd735dceca4420871239e52d.zip
ENH: Adding dump_user_data, results2csv commands
Abstracted out the data generation functions in views.py so they may be reused.
Diffstat (limited to 'exam/views.py')
-rw-r--r--exam/views.py75
1 files changed, 49 insertions, 26 deletions
diff --git a/exam/views.py b/exam/views.py
index cda6f38..7c561a7 100644
--- a/exam/views.py
+++ b/exam/views.py
@@ -241,30 +241,16 @@ def complete(request, reason=None):
return my_render_to_response('exam/complete.html', context)
else:
return my_redirect('/exam/')
-
-def monitor(request, quiz_id=None):
- """Monitor the progress of the papers taken so far."""
- user = request.user
- if not user.is_authenticated() and not user.is_staff:
- raise Http404('You are not allowed to view this page!')
-
- if quiz_id is None:
- quizzes = Quiz.objects.all()
- quiz_data = {}
- for quiz in quizzes:
- quiz_data[quiz.id] = quiz.description
- context = {'paper_list': [],
- 'quiz_name': '',
- 'quiz_data':quiz_data}
- return my_render_to_response('exam/monitor.html', context,
- context_instance=RequestContext(request))
- quiz_data = {}
+def get_quiz_data(quiz_id):
+ """Convenience function to get all quiz results. This is used by other
+ functions. Returns a list containing one dictionary for each question paper
+ of the quiz. The dictionary contains the necessary data.
+ """
try:
quiz = Quiz.objects.get(id=quiz_id)
except Quiz.DoesNotExist:
q_papers = []
- quiz = None
else:
q_papers = QuestionPaper.objects.filter(quiz=quiz)
questions = Question.objects.all()
@@ -283,6 +269,7 @@ def monitor(request, quiz_id=None):
paper['name'] = user.get_full_name()
paper['username'] = user.username
paper['rollno'] = str(profile.roll_number)
+ paper['email'] = user.email
qa = q_paper.questions_answered.split('|')
answered = ', '.join(sorted(qa))
paper['answered'] = answered if answered else 'None'
@@ -290,6 +277,33 @@ def monitor(request, quiz_id=None):
total = sum( [marks[int(id)] for id in qa if id] )
paper['total'] = total
paper_list.append(paper)
+
+ return paper_list
+
+def monitor(request, quiz_id=None):
+ """Monitor the progress of the papers taken so far."""
+ user = request.user
+ if not user.is_authenticated() and not user.is_staff:
+ raise Http404('You are not allowed to view this page!')
+
+ if quiz_id is None:
+ quizzes = Quiz.objects.all()
+ quiz_data = {}
+ for quiz in quizzes:
+ quiz_data[quiz.id] = quiz.description
+ context = {'paper_list': [],
+ 'quiz_name': '',
+ 'quiz_data':quiz_data}
+ return my_render_to_response('exam/monitor.html', context,
+ context_instance=RequestContext(request))
+ # quiz_id is not None.
+ try:
+ quiz = Quiz.objects.get(id=quiz_id)
+ except Quiz.DoesNotExist:
+ quiz = None
+
+ quiz_data = {}
+ paper_list = get_quiz_data(quiz_id)
if quiz is None:
quiz_name = 'No active quiz'
@@ -304,12 +318,11 @@ def monitor(request, quiz_id=None):
context = {'paper_list': paper_list, 'quiz_name': quiz_name}
return my_render_to_response('exam/monitor.html', context,
context_instance=RequestContext(request))
-
-def user_data(request, username):
- current_user = request.user
- if not current_user.is_authenticated() and not current_user.is_staff:
- raise Http404('You are not allowed to view this page!')
-
+
+def get_user_data(username):
+ """For a given username, this returns a dictionary of important data
+ related to the user including all the user's answers submitted.
+ """
try:
user = User.objects.get(username=username)
except User.DoesNotExist:
@@ -351,8 +364,18 @@ def user_data(request, username):
paper['answers'] = answers
papers.append(paper)
data['papers'] = papers
+ return data
+
+
+def user_data(request, username):
+ """Render user data."""
+ current_user = request.user
+ if not current_user.is_authenticated() and not current_user.is_staff:
+ raise Http404('You are not allowed to view this page!')
+
+ data = get_user_data(username)
context = {'user_data': data}
return my_render_to_response('exam/user_data.html', context,
context_instance=RequestContext(request))
- \ No newline at end of file
+