{% extends "testapp/base.html" %} {% block template_name %}testapp/summary_wizard.html{% endblock %} {% block content %}

Check your answers

{% for row in summary %}
{{ row.label }}
{% for field in row.fields %} {{ field.label }}: {{ field.value }} {% endfor %} Change {{ row.label }}
{% endfor %}
{% csrf_token %} {{ form.as_p }}
{% endblock %}