{% load i18n %}

{{ component.title }}

{% if component.filters %}
{% for filter in component.filters %}
{% if filter.type == "select" %} {% elif filter.type == "multi_select" %} {% elif filter.type == "date_range" %}
{% elif filter.type == "text" %} {% elif filter.type == "number" %} {% elif filter.type == "number_range" %}
{% elif filter.type == "checkbox" %}
{% for option in filter.options %} {% endfor %}
{% else %}

{% translate "Filter type not supported:" %} {{ filter.type }}

{% endif %}
{% endfor %}
{% else %}

{% translate "No filters configured." %}

{% endif %}