{% trans_default_domain 'front_ec_international' %} {% set infos = information|info(app.request.locale) %} {% set haveAddress = infos.addresses.contact is defined and infos.addresses.contact|length > 0 %} {% set haveEmails = infos.emails.contact is defined and infos.emails.contact|length > 0 %} {% set havePhones = infos.phones.contact is defined and infos.phones.contact|length > 0 %} {% if haveEmails or havePhones or haveAddress %}
{% if haveEmails or havePhones %}

{{ 'Contact'|trans|raw }}

{% if haveEmails %}
    {% for email in infos.emails.contact %}
  • {{ email.email|email(website) }}
  • {% endfor %}
{% endif %} {% if havePhones %}
    {% for phone in infos.phones.contact %}
  • {{ phone|phone(website) }}
  • {% endfor %}
{% endif %}
{% endif %} {% if haveAddress %}
{% set entitled = infos.addresses.contact|length > 1 ? 'Adresses'|trans|raw : 'Adresse'|trans|raw %}

{{ entitled }}

{% for address in infos.addresses.contact %} {{ address|address(website, 'contact') }} {% endfor %}
{% endif %}
{% endif %}