{% trans_default_domain 'front_ec_international' %}
{% 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]) %}
{{ title }}
{% endif %}
{% endfor %}
{% endif %}
{% include 'front/' ~ websiteTemplate ~ '/actions/map/include/data.html.twig' %}