{% extends dashboard_base %} {% block tab_content %}
{% if not site %} {# No site row = no traffic has ever arrived. Say so, rather than show zeros. #}
insights
No analytics data yet
A site registers itself automatically on the first event from a domain listed in security_domains.
{% else %}
{{ site.domain }} {% if online_now %} {{ online_now }} online {% endif %}
Visitors
{{ summary.visitors }}
Pageviews
{{ summary.pageviews }}
Sessions
{{ summary.sessions }}
Signed in
{{ summary.known_users }}
Bounce rate
{{ bounce_pct }}%
{% if timeseries %}
Pageviews last {{ days }}d
{% for point in timeseries %}
{% endfor %}
{% endif %}
{% include "analytics/_table.html" with title="Top pages" rows=top_pages %} {% include "analytics/_table.html" with title="Referrers" rows=top_referrers %} {% include "analytics/_table.html" with title="Channels" rows=channels %} {% include "analytics/_table.html" with title="Countries" rows=countries %} {% include "analytics/_table.html" with title="Browsers" rows=browsers %} {% include "analytics/_table.html" with title="Devices" rows=devices %}
{% endif %}
{% endblock %}