{% 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 {% if feed_generated_at %}on {{ feed_generated_at.strftime('%Y-%m-%d %H:%M') }}{% endif %} — 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 %} {%- set ep_id = ep_ids[ep.guid] -%} {%- set pe = probe.get(ep.guid) -%} {% include "_episode_status.html" %} Edit
{% endblock %}