From a460ea5194b0d626ba98532939cc9c2b5e3fe9f1 Mon Sep 17 00:00:00 2001 From: Jannat Patel Date: Tue, 17 May 2022 16:04:03 +0530 Subject: [PATCH] fix: start banner style --- lms/templates/quiz.html | 2 -- 1 file changed, 2 deletions(-) diff --git a/lms/templates/quiz.html b/lms/templates/quiz.html index 7a163bee..8ac0abbd 100644 --- a/lms/templates/quiz.html +++ b/lms/templates/quiz.html @@ -12,12 +12,10 @@
{{ quiz.title }}
{{ _("This quiz has {0} questions.").format(quiz.questions | length) }} - {% if quiz.max_attempts %} {% set suffix = "times" if quiz.max_attempts > 1 else "time" %} {{ _("You can attempt this quiz {0} {1}.").format(quiz.max_attempts, suffix) }} {% endif %} - {% if quiz.time %} {{ _("The quiz is time bound. You will have {0} seconds per question.").format(quiz.time) }} {% endif %}