{% load static i18n %} {{ link.name }} – {% trans "Shared Traffic Report" %}
{% if needs_password %}

{{ link.name }}

{% trans "This report is password-protected." %}

{% if error %}

{% trans "Incorrect password." %}

{% endif %}
{% csrf_token %}
{% else %}

{{ link.name }}

{{ snapshot.start_date }} – {{ snapshot.end_date }} {% if snapshot.site %}· {{ snapshot.site.name }}{% endif %}

{{ snapshot.total_views }}
{% trans "Total Views" %}
{{ snapshot.unique_visitors }}
{% trans "Unique Visitors" %}

{% trans "Top Pages" %}

{% for row in snapshot.top_pages %} {% empty %} {% endfor %}
{{ row.path }}{{ row.count }}
{% trans "No page views in this period." %}
{% if snapshot.top_referrers %}

{% trans "Top Referrers" %}

{% for row in snapshot.top_referrers %} {% endfor %}
{{ row.referrer }}{{ row.count }}
{% endif %} {% endif %}