{% extends "base.html" %} {% block content %}
{% for q in questions %}
Question {{ loop.index }}: {{ q.text | safe }}
{% for a in q.answers %} {% endfor %}
{% endfor %}
{% endblock %}