{% extends 'base.html' %} {% block title %}My Vocabulary Quizzes{% endblock %} {% block content %}

My Vocabulary Quizzes

Pending Quizzes

{% if pending_quizzes %}
{% for quiz in pending_quizzes %} {% endfor %}
Topic Created Actions
{{ topics.get(quiz.topic_id, 'Unknown Topic') }} {{ quiz.created_at.strftime('%Y-%m-%d %H:%M') }} Take Quiz
{% else %}

You don't have any pending vocabulary quizzes.

{% endif %}

Available Vocabulary Quizzes

{% if categories %}
{% for category_name, topics in categories.items() %}

{% for topic in topics %} {% endfor %}
# Topic Status Actions
{{ loop.index }} {{ topic.title }} {% if topic.is_locked %} Not Started {% elif topic.pending_quiz %} Quiz Ready {% elif topic.completed_quiz %} Completed {% else %} Available {% endif %} {% if topic.is_locked %} {% elif topic.pending_quiz %} Take Quiz {% elif topic.completed_quiz %}
View Results
{% else %}
{% endif %}
{% endfor %}
{% else %}

No topics available for vocabulary quizzes.

{% endif %}

Completed Quizzes

{% if completed_quizzes %}
{% for quiz in completed_quizzes %} {% endfor %}
Topic Completed Score Words Learned Actions
{{ topics.get(quiz.topic_id, 'Unknown Topic') }} {{ quiz.completed_at.strftime('%Y-%m-%d %H:%M') }} {{ quiz.score }}% {{ quiz.words_learned }}/{{ quiz.questions|length }} View Results
{% else %}

You haven't completed any vocabulary quizzes yet.

{% endif %}
{% endblock %}