summaryrefslogtreecommitdiff
path: root/yaksh/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'yaksh/models.py')
-rw-r--r--yaksh/models.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/yaksh/models.py b/yaksh/models.py
index 2fcb767..b5bde04 100644
--- a/yaksh/models.py
+++ b/yaksh/models.py
@@ -1170,6 +1170,7 @@ class AnswerPaper(models.Model):
"""Returns the current active question to display."""
if self.questions_unanswered.all():
return self.questions_unanswered.all()[0]
+ return self.questions.all()[0]
def questions_left(self):
"""Returns the number of questions left."""
@@ -1199,8 +1200,6 @@ class AnswerPaper(models.Model):
questions = list(all_questions.values_list('id', flat=True))
if len(questions) == 0:
return None
- if unanswered_questions.count() == 0:
- return None
try:
index = questions.index(int(question_id))
next_id = questions[index+1]