{% extends "portal_base.html" %} {% block title %}Leads · Portal{% endblock %} {% block topbar_title %}Lead inbox{% endblock %} {% block portal_content %}
{% for lead in leads %} {% empty %} {% endfor %}
Lead Interest UTM / source Status Received
{{ lead.contact }}
{{ lead.contact.email }}{% if lead.contact.phone %} · {{ lead.contact.phone }}{% endif %}
{{ lead.message|truncatechars:40|default:"—" }} {% if lead.attribution %} {{ lead.attribution.utm_source|default:"direct" }} {% if lead.attribution.utm_medium %}/ {{ lead.attribution.utm_medium }}{% endif %} {% if lead.attribution.utm_campaign %}/ {{ lead.attribution.utm_campaign }}{% endif %} {% else %} — {% endif %} {{ lead.get_status_display }} {{ lead.created_at|date:"M j, g:i A" }}
No leads match.
{% endblock %}