From 87f3f30b4288bcc867fd0f18f7d845484aaf910c Mon Sep 17 00:00:00 2001 From: maheshgudi Date: Fri, 8 Jul 2016 10:58:28 +0530 Subject: made minor changes in creating test quiz --- yaksh/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'yaksh') diff --git a/yaksh/models.py b/yaksh/models.py index ddfd5db..4ee6141 100644 --- a/yaksh/models.py +++ b/yaksh/models.py @@ -336,10 +336,11 @@ class QuizManager(models.Manager): trial_quiz.pk = None trial_quiz.description = trial_quiz_name trial_quiz.is_trial = True - trial_quiz.time_between_attempts = 0 trial_quiz.prerequisite = None if godmode: + trial_quiz.time_between_attempts = 0 trial_quiz.duration = 1000 + trial_quiz.attempts_allowed = -1 trial_quiz.active = True trial_quiz.start_date_time = timezone.now() trial_quiz.end_date_time = datetime(2199, 1, 1, 0, 0, 0, 0, -- cgit