{% extends "email/base.html" %} {% load posthog_assets %} {% load posthog_filters %} {% block head %} {% endblock %} {% block preheader %}Web analytics weekly digest for {{ organization.name }} organization{% endblock %} {% block main %}

Web analytics weekly digest for {{ organization.name }} organization

{% for section in project_sections %}
{{ section.team.name }}
Visitors
{{ section.visitors.current|compact_number }}
{% if section.visitors.change %}
{{ section.visitors.change.text }}
{% endif %}
Pageviews
{{ section.pageviews.current|compact_number }}
{% if section.pageviews.change %}
{{ section.pageviews.change.text }}
{% endif %}
Sessions
{{ section.sessions.current|compact_number }}
{% if section.sessions.change %}
{{ section.sessions.change.text }}
{% endif %}
Bounce rate
{{ section.bounce_rate.current }}%
{% if section.bounce_rate.change %}
{{ section.bounce_rate.change.text }}
{% endif %}
Avg. duration
{{ section.avg_session_duration.current }}
{% if section.avg_session_duration.change %}
{{ section.avg_session_duration.change.text }}
{% endif %}
{% if section.top_pages %}

Top pages

Pages with the most unique visitors this week

{% for page in section.top_pages %} {% include "email/_weekly_digest_change_cell.html" with change=page.change %} {% endfor %}
Page Visitors vs prev week
{% if page.host %}{{ page.host }}{% endif %}{{ page.path|truncatechars:50 }} {{ page.visitors|compact_number }}
{% endif %} {% if section.top_sources %}

Top sources

Referring domains that brought the most visitors this week

{% for source in section.top_sources %} {% include "email/_weekly_digest_change_cell.html" with change=source.change %} {% endfor %}
Source Visitors vs prev week
{{ source.name|truncatechars:60 }} {{ source.visitors|compact_number }}
{% endif %} {% if section.goals %}

Goals

Conversion goals for this week

{% for goal in section.goals %} {% include "email/_weekly_digest_change_cell.html" with change=goal.change %} {% endfor %}
Goal Conversions vs prev week
{{ goal.name|truncatechars:40 }} {{ goal.conversions|compact_number }}
{% endif %}
{% if recap_enabled %} View your weekly recap {% else %} View Web analytics dashboard {% endif %}
{% endfor %} {% if disabled_project_names %}
Note

This report did not include the following projects because they are disabled in your settings:

{% endif %}
Change notification settings
{% endblock %} {% block footer %}{% endblock %}