summaryrefslogtreecommitdiff
path: root/yaksh
diff options
context:
space:
mode:
authorankitjavalkar2017-02-23 17:44:51 +0530
committerankitjavalkar2017-03-06 17:35:17 +0530
commit0f730a5adc35e06f22f89fbbaa2d810e57074561 (patch)
treec00a2e7511486bdb00873bc72dfd52728a7255be /yaksh
parent9484e8bebcd4363fa3aa1c2fc842de1bdcc25a10 (diff)
downloadonline_test-0f730a5adc35e06f22f89fbbaa2d810e57074561.tar.gz
online_test-0f730a5adc35e06f22f89fbbaa2d810e57074561.tar.bz2
online_test-0f730a5adc35e06f22f89fbbaa2d810e57074561.zip
Remove commented code
Diffstat (limited to 'yaksh')
-rw-r--r--yaksh/views.py13
1 files changed, 2 insertions, 11 deletions
diff --git a/yaksh/views.py b/yaksh/views.py
index 6bd9d67..16299a8 100644
--- a/yaksh/views.py
+++ b/yaksh/views.py
@@ -432,10 +432,6 @@ def skip(request, q_id, next_q=None, attempt_num=None, questionpaper_id=None):
paper = get_object_or_404(AnswerPaper, user=request.user, attempt_number=attempt_num,
question_paper=questionpaper_id)
question = get_object_or_404(Question, pk=q_id)
- print ">>>>>>> Qt", q_id, next_q
- # if question in paper.questions_answered.all(): #@@@
- # next_q = paper.next_question(q_id)
- # return show_question(request, next_q, paper)
if request.method == 'POST' and question.type == 'code':
user_code = request.POST.get('answer')
@@ -444,10 +440,8 @@ def skip(request, q_id, next_q=None, attempt_num=None, questionpaper_id=None):
error=json.dumps([]))
new_answer.save()
paper.answers.add(new_answer)
- if next_q is not None: #@@@
+ if next_q is not None:
next_q = get_object_or_404(Question, pk=next_q)
- # if next_q not in paper.questions_unanswered.all():
- # return show_question(request, question, paper)
else:
next_q = paper.next_question(q_id)
return show_question(request, next_q, paper)
@@ -460,9 +454,6 @@ def check(request, q_id, attempt_num=None, questionpaper_id=None):
paper = get_object_or_404(AnswerPaper, user=request.user, attempt_number=attempt_num,
question_paper=questionpaper_id)
current_question = get_object_or_404(Question, pk=q_id)
- # if current_question in paper.questions_answered.all(): #@@@
- # next_q = paper.next_question(q_id)
- # return show_question(request, next_q, paper)
if request.method == 'POST':
snippet_code = request.POST.get('snippet')
@@ -514,7 +505,7 @@ def check(request, q_id, attempt_num=None, questionpaper_id=None):
error_message = result.get('error')
new_answer.error = json.dumps(result.get('error'))
next_question = current_question if current_question.type == 'code' \
- else paper.completed_question(current_question.id) ##@@
+ else paper.completed_question(current_question.id)
new_answer.save()
paper.update_marks('inprogress')
paper.set_end_time(timezone.now())