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

Podcasts

Active subscriptions: {{ podcasts|length }}

{% if error %}
⚠ {{ error }}
{% endif %} {% if notice %}
✓ {{ notice }}
{% endif %}
Add a podcast

→ Search the iTunes directory

{% for p in podcasts %}

{{ p.title }}

{% if p.author %}
{{ p.author }}
{% endif %}
{{ p.episode_count }} episodes · {{ p.actions }} actions · {{ p.device_count }} device(s)
{% if p.latest_ts %}
latest episode: {{ p.latest_ts|fmt_ts }}
{% endif %} {% if p.description %}
{{ p.description }}
{% endif %} {% if p.error %}
⚠ {{ p.error }}
{% endif %}
since {{ p.created|fmt_ts }}
{% else %}

No active subscriptions.

{% endfor %}
{% endblock %}