{% extends "_base.html" %} {% load i18n %} {% load static %} {% block content %}

{% translate "Potential contact data" %}

{% translate "Here is the list of E-mail addresses and phone numbers that are embedded in contents. We recommend to replace them with a contact card so they can be centrally managed and updated in the future." %}

{% translate "Pages" %}

{% if links_per_page %} {{ links_per_page|length }}{% translate " pages have potential contacts." %} {% endif %}
{% for content, links, contacts in links_per_page %} {% include "contacts/contact_from_email_and_phone_row.html" with collapsed=True icon="layout" button_title=_("Go to this page") %} {% empty %} {% translate "No E-mail address and phone number detected" %} {% endfor %}

{% translate "Events" %}

{% if links_per_event %} {{ links_per_event|length }}{% translate " events have potential contacts." %} {% endif %}
{% for content, links, contacts in links_per_event %} {% include "contacts/contact_from_email_and_phone_row.html" with collapsed=True icon="calendar" button_title=_("Go to this event") %} {% empty %} {% translate "No E-mail address and phone number detected" %} {% endfor %}

{% translate "Locations" %}

{% if links_per_poi %} {{ links_per_poi|length }}{% translate " events have potential contacts." %} {% endif %}
{% for content, links, contacts in links_per_poi %} {% include "contacts/contact_from_email_and_phone_row.html" with collapsed=True icon="map-pin" button_title=_("Go to this location") %} {% empty %} {% translate "No E-mail address and phone number detected" %} {% endfor %}
{% include "pagination.html" with chunk=contacts %} {% endblock content %}