{% extends 'base.html' %} {% block title %}Quiz Results{% endblock %} {% block content %}
You answered {{ quiz.words_learned }} out of {{ quiz.questions|length }} questions correctly.
{% if quiz.score >= 80 %} Excellent! {% elif quiz.score >= 60 %} Good job! {% elif quiz.score >= 40 %} Keep practicing! {% else %} Needs improvement {% endif %}
Question {{ loop.index }}: {{ question.word }}
{{ question.question_text }}
{% if question.context %}Context: "{{ question.context }}"
{% endif %}