{% extends "base.html" %} {% block content %}
Score: {{ score.correct }} / {{ score.total }}
{% for r in results %}
Question {{ loop.index }}: {{ r.text | safe }}
{% for a in r.answers %}
{% if a.is_correct %} (Bonne) {% endif %} {% if a.selected and not a.is_correct %} (Votre choix incorrect) {% endif %} {{ a.text }}
{% endfor %}
{% if r.question_correct %} Question correcte {% else %} Question incorrecte {% endif %}
{% endfor %}
Recommencer
{% endblock %}