{% extends 'hidp/includes/forms/base_form.html' %}
{% load csp_nonce %}
{% block form %}
{% comment %}
the following is a modified version of /django/forms/templates/django/forms/div.html
{% endcomment %}
{{ errors }}
{% if errors and not fields %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}
{% for field, errors in fields %}
{% if field.use_fieldset %}
{% endif %}
{% if forloop.last %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}
{% endfor %}
{% if not fields and not errors %}
{% for field in hidden_fields %}{{ field }}{% endfor %}
{% endif %}
{% endblock %}