{% translate "Episodes" %}
{% translate "Published episodes" %}
{{ published_episodes }}
{% translate "Total length" %}
{{ episode_durations.total|duration_seconds }}
{% translate "Shortest" %}
{{ episode_durations.min|duration_seconds }}
{% translate "Longest" %}
{{ episode_durations.max|duration_seconds }}
{% translate "Average length" %}
{{ episode_durations.avg|duration_seconds }}
{% translate "Median length" %}
{{ episode_durations.median|duration_seconds }}
{% translate "Avg. release interval" %}
{{ episode_interval|timedelta }}
{% translate "Home page views (and unique visitors)" %}
{% translate "Total" %}
{{ home_page_views_total }} ({{ home_page_visitors_total }})
{{ view|month }}
{{ view.views }} ({{ view.visitors }})
{% translate "Episode/post page views (and unique visitors)" %}
{% translate "Total" %}
{{ content_page_views_total }} ({{ content_page_visitors_total }})
{{ view|month }}
{{ view.views }} ({{ view.visitors }})
{% translate "All time most played episodes" %}
{% translate "Name" %}
{% translate "Plays/Unique IPs" %}
{{ episode.plays|floatformat }} ({{ episode.players }})
{% translate "Most played episodes during first week of release" %}
{% translate "Name" %}
{% translate "Plays/Unique IPs" %}
{{ episode.plays|floatformat }} ({{ episode.players }})
{% 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 per episode" 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 podcast=object.slug period="day" date_inputs=True only %}
{% translate "Approx. number of unique listeners and subscribers" %}
{% blocktranslate trimmed %} More precisely, these measure the number of unique and non-bot (or rather: not-confirmed-to-be-bot) IP addresses. The number of actual, physical people is unknown but definitely smaller. {% endblocktranslate %}
{% translate "Unique listeners" as title %}
{% include "admin/stats/graph.html" with class="unique-ips-graph" title=title podcast=object.slug period="month" date_inputs=True only %}
{% translate "Unique subscribers" as title %}
{% include "admin/stats/graph.html" with class="rss-unique-ips-graph" title=title podcast=object.slug period="month" date_inputs=True only %}