{% load i18n forms utils %} {% block form-content %} {% if use_csrf %}{% csrf_token %}{% endif %} {% block form-fields %} {% block above-form-fields %}{% endblock %} {{ form.non_field_errors }} {% if fieldsets %} {% for fieldset in fieldsets %} {% fieldset_renderer form fieldset %} {% endfor %} {% else %} {% for field in form %} {% include 'is_core/forms/default_field.html' with field=field field_name=field.name %} {% endfor %} {% endif %} {% block below-form-fields %}{% endblock %} {% endblock %} {% block above-submit-button %} {% block required-hint %}
{% blocktrans %}Fields marked with * are required{% endblocktrans %}
{% endblock %} {% endblock %}
{% block submit-button %} {% endblock %}
{% endblock %}