{% extends 'base.html' %} {% block title %}My Vocabulary Quizzes{% endblock %} {% block content %}
| Topic | Created | Actions |
|---|---|---|
| {{ topics.get(quiz.topic_id, 'Unknown Topic') }} | {{ quiz.created_at.strftime('%Y-%m-%d %H:%M') }} | Take Quiz |
You don't have any pending vocabulary quizzes.
| # | 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 %} {% else %} {% endif %} |
No topics available for vocabulary quizzes.
| 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 |
You haven't completed any vocabulary quizzes yet.