{% extends 'base.html' %} {% block content %}
{% csrf_token %} {% for error in form.non_field_errors %} {% endfor %} {% comment %} We merge the field errors as alerts, it should always work for this form {% endcomment %} {% for ff in form %} {% for error in ff.errors %} {% endfor %} {% endfor %} {% for ff in form %}
{{ ff }}
{% endfor %}
{% endblock %}