{% i18n "Address Book" %}

{% if contacts %} {% for contact in contacts %}

{{ contact.realName|safe }}

{% for email in contact.emails %} {{ email.email }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% if contact.note %}

{{ contact.note|safe }}

{% endif %}

{% endfor %} {% endif %}