{% if contacts %}
{% for contact in contacts %}
{{ contact.name }}
{% if contact.photo %}
{% endif %}
{% if contact.emails %}
{{ contact.emails|safe }} |
{% endif %}
{% if contact.organization %}
{{ contact.organization }} |
{% endif %}
{% if contact.webPage %}
{{ contact.webPage|safe }} |
{% endif %}
{% if contact.birthday %}
{{ contact.birthday }} |
{% endif %}
{% if contact.note %}
{{ contact.note }} |
{% endif %}
{% if contact.title %}
{{ contact.title }} |
{% endif %}
{% for address in contact.addresses %}
{% if address.formattedAddress %}
{{ address.formattedAddress|safe }} |
{% endif %}
{% endfor %}
{% for listphone in contact.phones %}
{{ listphone.number }} |
{% endfor %}
{% for im in contact.instantManging %}
{{ im.address }} |
{% endfor %}
{% endfor %}
{% endif %}