{% extends "dashboard/base.html" %} {% block title %}Contacts - Cyborg Dashboard{% endblock %} {% block content %}

Contact Trust

Manage contacts and their trust level. Trusted contacts receive permissive email handling; untrusted contacts are treated cautiously.

{{ total }}
Total Contacts
{{ trusted_count }}
Trusted
{{ untrusted_count }}
Untrusted
{% if contacts %}
{% for contact in contacts %}

{{ contact.name }}

{% if contact.is_trusted %} Trusted {% else %} Untrusted {% endif %} {% if contact.is_default %} Default {% endif %}
{{ contact.id[:8] }} {{ contact.phone_number }} {% if contact.email %} {{ contact.email }} {% else %} no email {% endif %} Added {{ contact.created_at|relative_time }}
{% if contact.is_trusted %} {% else %} {% endif %}
{% endfor %}
{% else %}

No Contacts

Contacts will appear here once they are added via the API.

{% endif %} {% endblock %}