{% translate "Episode" %}
{% translate "All time plays" %}
{{ plays_all_time|default_if_none:"0"|floatformat }}
{% translate "Plays during first week" %}
{{ plays_first_week|default_if_none:"0"|floatformat }}
{% translate "All time unique players" %}
{{ players_all_time|default_if_none:"0"|floatformat }}
{% translate "Unique players during first week" %}
{{ players_first_week|default_if_none:"0"|floatformat }}
{% translate "Page views (and unique visitors)" %}
{% translate "Total" %}
{{ page_views_total }} ({{ page_visitors_total }})
{{ view|month }}
{{ view.views }} ({{ view.visitors }})
{% translate "Listener countries" %}
{% for country in top_countries %}
{% endfor %}
{% include "admin/stats/stats_table_links.html" %}
{{ country.ccode|country_code }}
{{ country.ip_count }}
{% translate "Listener applications" %}
{% for app in top_apps %}
{% endfor %}
{% include "admin/stats/stats_table_links.html" %}
{{ app.app_name }}
{{ app.ip_count }}
{% translate "Listener devices" %}
{% for device in top_devices %}
{% endfor %}
{% include "admin/stats/stats_table_links.html" %}
{{ device.device_name }}
{{ device.ip_count }}
{% translate "Play count" as title %}
{% blocktranslate trimmed asvar subtitle %}
This measures the number of episode downloads per day by non-bot users. The numbers may be fractional
because of partial downloads.
{% endblocktranslate %}
{% include "admin/stats/graph.html" with class="episode-plays-graph" title=title subtitle=subtitle episode=object.pk chart_type="line" period="day" date_inputs=True start_date=graph_start_date only %}
{% translate "Unique listeners" as title %}
{% blocktranslate trimmed asvar subtitle %}
This measures the number of unique and non-bot IP addresses. The number of actual, physical
people is unknown but definitely smaller.
{% endblocktranslate %}
{% include "admin/stats/graph.html" with class="unique-ips-graph" title=title subtitle=subtitle episode=object.pk period="day" date_inputs=True start_date=graph_start_date only %}