{% extends "base.html" %} {% block title %}{{ quiz.title }}{% endblock %} {% block content %}
{{ quiz.icon }} {{ quiz.title }}
1 / {{ quiz.questions|length }}
{% for i, q in quiz.questions | enumerate %}
0 %}hidden{% endif %}>

Question {{ i + 1 }} / {{ quiz.questions|length }}

{{ q.text }}

{% for j, choice in q.choices | enumerate %} {% endfor %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}