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

{{ feed.title }}

{% if feed.author %}

{{ feed.author }}

{% endif %}

{% if subscribed %}● subscribed{% else %}○ not subscribed{% endif %} · {{ feed.episodes|length }} episodes · {{ action_count }} action(s) {% if feed.link %} · website ↗{% endif %} · RSS ↗

{% if feed.error %}
Failed to load feed: {{ feed.error }}
{% elif feed.description %}
{{ feed.description }}
{% endif %}

Episodes

{% for e in episodes %}
{{ e.title }} {% if e.completed %}✓ completed {% elif e.latest_position %}⏵ {{ e.progress_pct }}% ({{ e.latest_position }}s) {% endif %}
{% if e.pub_ts %}{{ e.pub_ts|fmt_ts }}{% elif e.pub_date %}{{ e.pub_date }}{% endif %} {% if e.duration %} · {{ e.duration|fmt_duration }}{% endif %} {% if e.action_count %} · {{ e.action_count }} action(s){% endif %}
{% if e.url %} {% endif %} {% if e.description %}
{{ e.description[:240] }}{% if e.description|length > 240 %}…{% endif %}
{% endif %}
{% else %}

No episodes in feed.

{% endfor %} {% endblock %}