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

Vocabulary Quiz

Topic: {{ topic.title }}

Test your vocabulary knowledge with this quiz. Choose the correct meaning for each word.

{% for question in questions %}

Question {{ loop.index }}:

{{ question.question_text }}

{% if question.context %}

Context: "{{ question.context }}"

{% endif %}
{% for option in question.get_options() %}
{% endfor %}
{% endfor %}
Cancel
{% endblock %}