{% if contacts %} {% for contact in contacts %}
{{ contact.name }}
{{ contact.realName|safe }}
{% if contact.photo %} {% endif %} {% if contact.emails %} {% endif %} {% if contact.organization %} {% endif %} {% for url in contact.urls %} {% endfor %} {% if contact.birthday %} {% endif %} {% if contact.note %} {% endif %} {% if contact.title %} {% endif %} {% for address in contact.addresses %} {% if address.formattedAddress %} {% endif %} {% endfor %} {% for listphone in contact.phones %} {% endfor %} {% for im in contact.impps %} {% endfor %}
{{ contact.photo|safe }}
{% i18n "Emails" %} {% for email in contact.emails %} {{ email.email }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% i18n "Organization" %} {{ contact.organization }}
{% i18n "Website" %} {{ url.url }}
{% i18n "Birthday" %} {{ contact.formattedBirthday }}
{% i18n "Note" %} {{ contact.note }}
{% i18n "Title" %} {{ contact.title }}
{{ address.typeLabel }} {% with address.formattedAddress as fa %} {% for line in fa.splitlines %}{{ line }}
{% endfor %} {% endwith %}
{{ listphone.typeLabel }} {{ listphone.number }}
{{ im.serviceLabel }} {{ im.address.path }}

{% endfor %} {% endif %}