{% if attempts_exceeded %}
{{ 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 }}
{{ _("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 %}
{{ _("Start") }}
{% for question in quiz.questions %} {% set instruction = _("Choose all answers that apply") if question.multiple else _("Choose 1 answer") %}
{{ loop.index }}
{{ frappe.utils.md_to_html(question.question) }}
{{ instruction }}
{% set options = [question.option_1, question.option_2, question.option_3, question.option_4] %} {% for option in options %} {% if option %}
{% set explanation = question['explanation_' + loop.index | string] %} {% if explanation %} {{ explanation }} {% endif %}
{% endif %} {% endfor %}
{% endfor %}

{% endif %}