{% load i18n filters %}
{% with f=filter|get_first_filter_by_type:"search" %} {% include f.template_name with attrs=f.attrs %} {% endwith %}
{% with f=filter|get_first_filter_by_type:"sort" %} {% if f %} {% include f.template_name with attrs=f.attrs %} {% endif %} {% endwith %}
{% with switchs=filter|get_filters_by_type:"switch" %} {% if switchs|length > 0 %}
{% for switch in switchs %}
{% include switch.template_name with attrs=switch.attrs %}
{% endfor %}
{% endif %} {% endwith %}