{% extends "_base.html" %} {% block head_extra %} {% endblock %} {% block title %}{{ episode.title or 'New episode' }} — offshore{% endblock %} {% block content %}

{{ 'New episode' if is_new else 'Edit episode' }}

* required

{% if not is_new %}
{{ episode.guid }}
{% if episode.guid.startswith('draft-') %} A permanent GUID will be generated when you publish this draft. {% else %} Generated on episode creation and shouldn’t be edited. Changing it would look like a brand-new episode to subscribers. {% endif %}
{% endif %}
{% if probe_entry is defined and probe_entry %} {% if probe_entry.ok %}

probed {{ probe_entry.mime_type }}, {{ probe_entry.length_bytes }} bytes — {{ probe_entry.probed_at.strftime('%Y-%m-%d %H:%M') }}

{% else %}

probe failed {{ probe_entry.error or 'unknown error' }} — {{ probe_entry.probed_at.strftime('%Y-%m-%d %H:%M') }}

{% endif %} {% elif episode.audio.length_bytes %}

probed {{ episode.audio.mime_type }}, {{ episode.audio.length_bytes }} bytes

{% endif %} {% if episode_image_check.image == "fail" %}

image check failed {{ episode_image_check.image_warnings[0] if episode_image_check.image_warnings else "could not verify this image" }}

{% elif episode_image_check.image_warnings %}
{% for w in episode_image_check.image_warnings %}

image warning {{ w }}

{% endfor %}
{% endif %}

Hosts and guests, chosen from the show roster or create new entires right here.

Preview

{% if not is_new %} {% endif %}
Saving{% if not is_new %} and verifying audio{% endif %}…
{% if not is_new %}

Republish episode

Changing an episode's pub_date will look like a brand new item to some podcast clients. Subscribers may re-download and be notified.

{% endif %}

Add person to roster

{% endblock %}