{% extends 'base.html.twig' %} {% block body %}
{% for question in questions %}

{{ loop.index }}. {{ question.question }}

{% for answer in question.answers %}
{% endfor %}
{% endfor %}
{% endblock %}