{% load widget_tweaks %} {# Filter panel for CRUDSundaeView with search and django-filter integration #} {# This template can be overridden by creating {app_label}/{model_name}_filters.html #} {% if search_term or filterset or active_filters %}

Search & Filter

{% if active_filters or search_term %} Clear all {% endif %}
{% if view.search_fields %}
{% endif %} {% if filterset %}
{% for field in filterset.form %}
{% render_field field class="block w-full rounded-md border-2 border-gray-200/70 shadow-sm focus:border-blue-400 focus:ring-2 focus:ring-blue-200 focus:ring-opacity-50 text-sm" %} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}
{% endif %}
{% if active_filters or search_term %} Clear {% endif %}
{% endif %}