{% extends "base.html" %} {% block title %}Quiz: {{ module_name }} — Python 108{% endblock %} {% block content %}

{{ module_name }} Quiz

10 questions · Pass mark 7/10 (70%) {% if attempts > 0 %} · Attempt {{ attempts + 1 }}{% endif %}

{% if best %}
Best: {{ best['score'] }}/{{ best['total'] }} {% if best['passed'] %}✓ Passed{% else %}Not yet{% endif %}
{% endif %}
Question 1 of {{ questions|length }}
{% for q in questions %} {% set i = loop.index0 %}
Question {{ i + 1 }} / {{ questions|length }}
{{ q.q }}
{% for opt in q.options %} {% set j = loop.index0 %} {% endfor %}
{% endfor %}
{% endblock %}