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

Episodes

Favorites ({{ favorites|length }})

{% for f in favorites %}
{{ f.title or '(untitled)' }}
{{ f.podcast_title }}
{% if f.pub_date %}{{ f.pub_date }}{% endif %} {% if f.duration %} · {{ f.duration|fmt_duration }}{% endif %} · listen ↗
{% else %}

No favorites yet.

{% endfor %}

Recently active episodes ({{ recent|length }})

{% for e in recent %}
{{ e.episode_title or e.episode_url }}
{{ e.podcast_title }}
{{ e.action_count }} action(s) · last {{ e.last_seen|fmt_ts }} {% if e.duration %} · {{ e.duration|fmt_duration }}{% endif %} · listen ↗
{% else %}

No episode activity yet.

{% endfor %} {% endblock %}