{% extends "admin/stats/base.html" %} {% load admin_urls static i18n spodcat %} {% block breadcrumbs %} {% endblock %} {% block content %}

{% 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 "Listener countries" %}

{% translate "Listener applications" %}

{% translate "Listener devices" %}

{% 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 %}
{% endblock %}