{% 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

{% csrf_token %}

Discovered Contacts

{% if candidates %}
{% for row in candidates %} {% endfor %}
Person Detected Name Service Identifier Suggested Match 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 %} unlinked {% endif %} Message
{% else %}

No contacts discovered yet.

{% endif %}
{% endblock %}