diff options
author | Prabhu Ramachandran | 2017-10-05 19:56:07 +0530 |
---|---|---|
committer | GitHub | 2017-10-05 19:56:07 +0530 |
commit | 72c9a0f2a84925b9f8096702aa702e1deb49e2ce (patch) | |
tree | 7efe929fbc1d58d3ca3cd65753600d3b995c3ded /yaksh/models.py | |
parent | 9249ba66edecb68d5d946425974625b743386635 (diff) | |
parent | 2ffbca59a947bcef7f4ae28b2bd1d73d18179380 (diff) | |
download | online_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.tar.gz online_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.tar.bz2 online_test-72c9a0f2a84925b9f8096702aa702e1deb49e2ce.zip |
Merge pull request #344 from ankitjavalkar/allow-paper-revisit
Allow user to quit the paper manually and revisit the paper if necessary
Diffstat (limited to 'yaksh/models.py')
-rw-r--r-- | yaksh/models.py | 3 |
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] |