Choose the word that best matches the definition.
You can find the answer at the bottom of this page.
{% for ew in entries %}
Quiz. {{ ew['idx'] }}. {{ ew['def-3'] }}
{% set n_choice = 4 %}
{% set answer = range(0, n_choice) | random %}
{% for i in range(0, 4) %}
{% if i == answer %}
{{ i+1 }}. {{ ew['atop'] }}
{% else %}
{% set false_ew = entries | random %}
{{ i+1 }}. {{ false_ew['atop'] }}
{% endif %}
{% endfor %}
{% endfor %}
Answers
{% for ew in entries %}
{{ ew['idx'] }} ..... {{ ew['atop'] }} /
{% if loop.index % 5 == 0 %}
{% endif %}
{% endfor %}