{% extends "testapp/base.html" %} {% block template_name %}testapp/formset_step.html{% endblock %} {% block content %}
{% if request.run.back_url %}

Back

{% endif %}
{% csrf_token %} {# A formset renders its own management form through as_p, which #} {# is the whole reason a formset step needs no special handling: #} {# the stored submission is the POST the browser sent. #} {{ form.as_p }}
{% endblock %}