{% load uni_form_tags i18n %} {% csrf_token %} {% if form.non_field_errors %}

{% if error_message_title %}{{ error_message_title }}{% else %}Errors{% endif %}

    {{ form.non_field_errors|unordered_list }}
{% endif %} {% if form_html %}{{ form_html }}{% else %}
* {% trans "Required fields" %} {% for field in form %} {% include "uni_form/field.html" %} {% endfor %}
{% endif %} {% if inputs %}
{% for input in inputs %} {% endfor %}
{% endif %}