{% extends "base.html" %} {% block title %}Stats - {{ user.username }}{% endblock %} {% block content %}

Statistics

Listening time

{{ (listened_seconds // 3600) }}h {{ ((listened_seconds % 3600) // 60) }}m

Sum of farthest position reached per episode (deduped)
Episodes started

{{ episodes_started }}

{{ episodes_completed }} completed
First action

{{ first_ts|fmt_ts or '—' }}

Last action

{{ last_ts|fmt_ts or '—' }}

Actions by type

{% set max_action = (per_action|map(attribute=1)|max) if per_action else 1 %} {% for name, count in per_action %}
{{ name }}
{{ count }}
{% else %}

No data yet.

{% endfor %}

Actions by device

{% set max_device = (per_device|map(attribute=1)|max) if per_device else 1 %} {% for name, count in per_device %}
{{ name }}
{{ count }}
{% else %}

No data yet.

{% endfor %}

Top podcasts

{% for p in top_podcasts %}

{{ p.title }}

{{ p.count }} actions
{% else %}

No data yet.

{% endfor %}
{% endblock %}