{% load i18n insight_tags %}
{% csrf_token %} {% if form_config.title %}

{{ form_config.title }}

{% if form_config.description %}

{{ form_config.description }}

{% endif %}
{% endif %}
{% for field in form_config.fields %} {% if field.input_type == "textarea" %} {% textarea config=field %} {% elif field.input_type == "select" %} {% select config=field %} {% else %} {% input_field config=field %} {% endif %} {% endfor %}
{% if form_config.show_reset_button %} {% button label=form_config.reset_label|default:_("Reset") type="secondary" button_type="reset" %} {% endif %} {% button label=form_config.submit_label|default:_("Submit") type="primary" button_type="submit" %}
{% if form_config.htmx_config %}
{% trans 'Loading...' %}
{% endif %}