{% load crispy_forms_tags %}

{{ count }} {{ content_type.name }} object(s)

Using {{ selection_label }}.

{% if query_search %}

Search: {{ query_search }}

{% endif %} {% if query_summary %} {% for key, values in query_summary %}

{{ key }}: {{ values|join:", " }}

{% endfor %} {% else %}

No filters applied.

{% endif %} {% if object_ids %}

Selected ids: {{ object_ids|join:", " }}

{% endif %}
{% if count == 0 %}
No objects match this bulk action.
{% elif not form.fields.application_field_id.choices %}
No editable fields are available for your permissions.
{% else %}
{% csrf_token %} {{ form.application_field_id|as_crispy_field }}
{% if selected_field %} {% include "components/objects/bulk_action_field.html" with application_field=selected_field field=selected_field_value %} {% endif %}
{% endif %}