{% extends "index.html" %} {% block content %}

Contact Match

Manually link Signal, WhatsApp, Instagram, and XMPP identifiers to people.

{% if notice_message %}
{{ notice_message }}
{% endif %}

Create Or Link Identifier

Discovered Contacts

{% if candidates %}

fetched {{ candidates|length }} result{% if candidates|length != 1 %}s{% endif %}

{% for row in candidates %} {% endfor %}
Person Name Service Identifier Suggest Status
{{ row.linked_person_name|default:"-" }} {{ row.detected_name|default:"-" }} {{ row.service|title }} {{ row.identifier }} {% if not row.linked_person and row.suggestions %}
{% for suggestion in row.suggestions %}
{% csrf_token %}
{% endfor %}
{% else %} - {% endif %}
{% if row.linked_person %} linked {% else %} {% endif %}
{% else %}

No contacts discovered yet.

{% endif %}
{% endblock %}