{% if address.name is defined and address.name %}
{{ address.name }}
{% endif %}
{% if address.address is defined and address.address %}
{{ address.address }}
{% endif %}
{% if address.zipCode is defined and address.zipCode %}
{{ address.zipCode }}
{% endif %}
{% if address.city is defined and address.city %}
-
{{ address.city }}
{% endif %}
{% if address.department is defined and address.department %}
{{ address.department }}
{% endif %}
{% if address.region is defined and address.region %}
-
{{ address.region }}
{% endif %}
{% if address.country is defined and address.country %}
-
{{ address.country|countryName }}
{% endif %}
{% set phones = address.phones is defined and address.phones|length > 0 ? address.phones : [] %}
{% set emails = address.emails is defined and address.emails|length > 0 ? address.emails : [] %}
{% for email in address.emails %}
- {{ email.email|email(website) }}
{% endfor %}
{% for phone in address.phones %}
- {{ phone|phone(website) }}
{% endfor %}