{% extends "base.html" %} {% load static %} {% block title %}UTM & Traffic Analytics{% endblock %} {% block content %}

UTM & Traffic Analytics

First-party page views with campaign tags and traffic classification (human, AI bots, search indexers, and more). Staff only.

{{ total_visits }}

Total page views

{{ human_count }}

Human traffic

{{ ai_count }}

AI bot / AI search

{{ indexer_count }}

Search indexing

{{ utm_landings }}

UTM landings

{{ attributed_visits }}

Views with UTM attribution

Traffic mix

{% if type_counts %} {% for row in type_counts %} {% endfor %}
Type Views Share
{{ row.label }} {{ row.total }} {% widthratio row.total total_visits 100 %}%
{% else %}

No visits in this period yet.

{% endif %}

Top sources

{% if top_sources %} {% for row in top_sources %} {% endfor %}
utm_sourceViews
{{ row.utm_source }}{{ row.total }}
{% else %}

No UTM sources yet. Share links like ?utm_source=linkedin&utm_medium=social&utm_campaign=spring.

{% endif %}

Top mediums

{% if top_mediums %} {% for row in top_mediums %} {% endfor %}
utm_mediumViews
{{ row.utm_medium }}{{ row.total }}
{% else %}

No UTM mediums yet.

{% endif %}

Top campaigns

{% if top_campaigns %} {% for row in top_campaigns %} {% endfor %}
utm_campaignViews
{{ row.utm_campaign }}{{ row.total }}
{% else %}

No UTM campaigns yet.

{% endif %}

Top pages{% if traffic_filter %} (filtered){% endif %}

{% if top_pages %} {% for row in top_pages %} {% endfor %}
PathViews
{{ row.path }}{{ row.total }}
{% else %}

No page data for this filter.

{% endif %}
{% if contacts_with_utm %}

Contact leads with UTM

All leads →
{% for c in contacts_with_utm %} {% endfor %}
When Name Email Source Medium Campaign
{{ c.created|date:"Y-m-d H:i" }} {{ c.name }} {{ c.email }} {{ c.utm_source|default:"—" }} {{ c.utm_medium|default:"—" }} {{ c.utm_campaign|default:"—" }} Details
{% endif %}

Recent visits

{% if recent_visits %} {% for v in recent_visits %} {% endfor %}
When Path Type Source Medium Campaign Landing Referrer
{{ v.created|date:"Y-m-d H:i" }} {{ v.path }} {{ v.get_traffic_type_display }} {{ v.utm_source|default:"—" }} {{ v.utm_medium|default:"—" }} {{ v.utm_campaign|default:"—" }} {% if v.is_landing %}Yes{% else %}—{% endif %} {{ v.referrer|default:"—"|truncatechars:40 }}
{% else %}

No visits recorded yet. Browse the public site (optionally with UTM query params) and refresh this page.

{% endif %}
{% endblock %}