{% macro field_row(field, label) %}
{% if field.type == "SelectField" %} {{ field(class_="custom-select") }} {% else %} {{ field() }} {% endif %}
{{ field.description }}
{% endmacro %} {% macro field_file_row(field) %}
{{ field(class_='custom-file-input') }}
{% endmacro %} {% macro field(field, label) %}
{{ label|safe }}
{{ field() }}
{% endmacro %} {% macro field_no_label(field) %}
{{ field() }}
{% endmacro %} {% macro script_send_form(form, form_name, method, message_field) %} {% endmacro %}