{% trans_default_domain 'front_default' %}
{% if displayFilters %}
{{ "Filtrer"|trans|raw }}
{% set categoryIds = {} %}
{% for category in categories %}
{% if category.id not in categoryIds %}
{% set i18n = category|i18n %}
{% set title = i18n and i18n.title ? i18n.title : category.adminName %}
{% set categoryIds = categoryIds|merge([category.id]) %}