{% extends 'base.html' %} {% block title %}Quiz Results{% endblock %} {% block content %}

Vocabulary Quiz Results

Topic: {{ topic.title }}
{{ quiz.score }}%

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 %}


Review Your Answers:

{% for question in questions %}

Question {{ loop.index }}: {{ question.word }}

{{ question.question_text }}

{% if question.context %}

Context: "{{ question.context }}"

{% endif %}
Your answer: {{ question.student_answer }}
{% if not question.is_correct %}
Correct answer: {{ question.correct_answer }}
{% endif %}
{% if question.is_correct %} Correct {% else %} Incorrect {% endif %} {% if question.is_correct %} Added to vocabulary {% endif %}
{% endfor %}
{% endblock %}