{% if component.form_errors %}
{% for error in component.form_errors %}
{% alert message=error theme="danger" %}
{% endfor %}
{% endif %}
{% if component.form_mode == "update_many" %}
{% if not component.is_update_many_confirmed %}
There is no undo button! Are you sure you want to update all these entries?
{% with target_id="#"|add:component.component_id|add:"-submit-button" %}
{% htmx_button method_name="confirm_update_many" include="#select_search_results" target=target_id %}
{% endwith %}
{% else %}
This will update {{ component.entry_ids_to_update|length }} entries.
{% htmx_button method_name="submit_form" label="Save to database" icon="floppy2" %}
{% endif %}
{% elif component.form_mode == "search" %}
{% htmx_button method_name="submit_form" label="Search" icon="search" %}
{% else %}
{% htmx_button method_name="submit_form" label="Save to database" icon="floppy2" %}
{% endif %}