{% extends "_base.html" %} {% block title %}{{ show.title }} — offshore{% endblock %} {% block content %}

{{ show.title }}

{{ show.description }}

Activity

Running checks…
{% include "_check_report.html" %}
Starting probe…
Generating feed…
{% if feed_url %}

Feed previously generated — download podcast.xml.

{% endif %}

Episodes ({{ episodes|length }})

{% for ep in episodes %} {% endfor %}
#Titlepub_dateDurationStatus
{{ ep.episode_number if ep.episode_number is not none else '—' }} {{ ep.title }}
{{ ep.guid }}
{{ ep.pub_date.strftime('%Y-%m-%d %H:%M') }} {% if ep.audio.duration_seconds %} {% set total = ep.audio.duration_seconds|int %} {% set h = total // 3600 %}{% set m = (total % 3600) // 60 %}{% set s = total % 60 %} {% if h %}{{ '%d:%02d:%02d'|format(h, m, s) }}{% else %}{{ '%d:%02d'|format(m, s) }}{% endif %} {% else %} — {% endif %} {% if ep.audio.length_bytes and ep.audio.mime_type %} probed {% else %} unprobed {% endif %} Edit
{% endblock %}