diff --git a/lms/templates/quiz.html b/lms/templates/quiz.html
index 8ac0abbd..093bceda 100644
--- a/lms/templates/quiz.html
+++ b/lms/templates/quiz.html
@@ -1,23 +1,25 @@
{% if attempts_exceeded %}
-
{{ quiz.title }}
+
{{ quiz.title }}
{{ _("You have already exceeded the maximum number of attempts allowed for this quiz.") }}
{{ _("You latest score is {0}.").format(last_attempt_score) }}
{% else %}
-
{{ quiz.title }}
+
{{ quiz.title }}
{{ quiz.title }}
- {{ _("This quiz has {0} questions.").format(quiz.questions | length) }}
+ {{ _("There are {0} questions in this quiz.").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) }}
+ {{ _("This quiz can only be taken {0} {1}. If you attempt the quiz and leave the page before submitting, the quiz will be automatically submitted.").format(quiz.max_attempts, suffix) }}
{% endif %}
+
{% if quiz.time %}
- {{ _("The quiz is time bound. You will have {0} seconds per question.").format(quiz.time) }}
+ {{ _("The quiz has a time limit. Each question will be given {0} seconds.").format(quiz.time) }}
{% endif %}