{% if form.errors %} {% endif %} {% with method=method|default:"post" %}
{% if method == "post" %} {% csrf_token %} {% endif %} {% for field in form %} {% if field.field.separator %}

{% endif %} {% if field.field.form_title %}
{{ field.field.form_title }}
{% endif %} {% if field.field.widget.input_type == "checkbox" %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% else %}
{% if not field.is_hidden %} {% endif %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endif %} {% endfor %}
{% block form_validation_button %} {% if icon_button and text_button and color_button %} {% elif custom_buttons_html %} {% include custom_buttons_html %} {% elif action == "edit" %} {% elif action == "create" %} {% elif action == 'apply' %} {% endif %} {% endblock %}
* Required field
{% endwith %}