{% extends "base.html" %} {% load static %} {% block title %}Contact Leads{% endblock %} {% block content %}

Contact Leads

UTM Analytics →

Inquiries from the contact form, with message details and any UTM attribution. Staff only.

{{ total }}

Total in period

{{ new_count }}

New (not contacted)

{{ contacted_count }}

Contacted

{{ with_utm }}

With UTM attribution

Showing {{ lead_count }} lead{% if lead_count != 1 %}s{% endif %}{% if lead_count > 200 %} (first 200){% endif %}.

{% if leads %} {% for lead in leads %} {% endfor %}
When Name Email Subject Status Source Campaign
{{ lead.created|date:"Y-m-d H:i" }} {{ lead.name }} {{ lead.email }} {{ lead.subject|truncatechars:40 }} {% if lead.contacted %}Contacted{% else %}New{% endif %} {{ lead.utm_source|default:"—" }} {{ lead.utm_campaign|default:"—" }} Details
{% else %}

No leads match these filters.

{% endif %}
{% endblock %}