{% extends dashboard_base %} {% block tab_content %} {{ timeseries|json_script:"analytics-timeseries" }}
{% if source %}{{ source.domain }}{% else %}All traffic{% endif %} {% if properties or sites %} {% endif %} {% 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 }}%
Traffic
PageviewsUnique visitors
· pageviews · unique visitors
Hover or focus a day
0
{% 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 %}
{% if goals or funnels %}
{% if goals %}{% include "analytics/_table.html" with title="Goals" rows=goals %}{% endif %} {% for funnel in funnels %}
{{ funnel.name }}Funnel
{% if funnel.steps %}
{% for step in funnel.steps %}
{{ forloop.counter }}{{ step.name }}{{ step.event_name }}{{ step.visitors }}{{ step.conversion_percent }}%
{% endfor %}
{% else %}
Add funnel steps in Analytics admin
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}