{% if persons %} {% for person in persons %}
{% if person.canonical_email %} {{ person.canonical_email }} {% else %} {{ person.identities[0].name or person.identities[0].source_id }} (no email) {% endif %} {% if person.is_cross_source %}cross-source{% endif %}
{% for identity in person.identities %}
{{ identity.source }} {{ identity.source_id }} ({{ identity.status }})
{% endfor %}
{% endfor %} {% else %}
No persons match the current filters.
{% endif %}