{% 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 %} {% if field.label %}{{ field.label }}: {% endif %}{{ field.value }} {% endfor %} Change {{ row.label }}
{% endfor %}
{# Nothing to tick: the button is the confirmation. #}
{% csrf_token %}
{% endblock %}