{% extends "base.html" %} {% block title %}{{ contact.name }}{% endblock %} {% block content %} ← Back to contacts

Details

Company {{ contact.company or "—" }} {% if role in ('editor', 'admin') %}
{% endif %}
Tier{{ contact.company_tier or "—" }}
Status {{ contact.status }} {% if role in ('editor', 'admin') %}
{% endif %}
Match Reason{{ contact.match_reason or "—" }}
Total Interactions{{ contact.total_interactions }}
First Seen{{ contact.first_interaction }}
Last Active{{ contact.latest_interaction }}
Zoho CRM {% if contact.zoho_id %} Synced ID: {{ contact.zoho_id }} — {{ contact.zoho_synced_at.strftime('%Y-%m-%d %H:%M') if contact.zoho_synced_at else '' }} {% elif contact.status == 'ICP' %} Pending {% if role == 'admin' %} {% endif %} {% else %} N/A {% endif %}

Notes

{% if role in ('editor', 'admin') %}
{% else %}

{{ contact.notes or "No notes." }}

{% endif %}
{# ── Interaction Timeline ── #}

Interaction History ({{ interactions|length }})

{% for i in interactions %} {% else %} {% endfor %}
DateTypePostExecutive
{{ i.date }} {{ i.type }} {{ i.post_hook[:60] }}{% if i.post_hook|length > 60 %}…{% endif %} {{ i.source_profile }}
No interactions recorded.
{% endblock %}