{{ _("This quiz consists of {0} questions.").format(quiz.questions | length) }}
- {% if quiz.max_attempts %}
- {% set suffix = "times" if quiz.max_attempts > 1 else "time" %}
- {{ _("This quiz can only be taken {0} {1}. If you attempt the quiz but leave the page before submitting,
- the quiz will be automatically submitted.").format(quiz.max_attempts, suffix) }}
- {% endif %}
- {% if quiz.time %}
- {{ _("The quiz has a time limit. For each question you will be given {0} seconds.").format(quiz.time) }}
- {% endif %}