{% extends "_base.html" %} {% from "_category_select.html" import category_select %} {% block title %}Show settings — offshore{% endblock %} {% block content %}

Show settings

* required

Hosts and other roles for the show, chosen from the roster below. Drives <itunes:author> and <podcast:person> tags in the feed.

{% if show_image_check.image == "fail" %}

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

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

image warning {{ w }}

{% endfor %}
{% endif %} {{ category_select(show.categories[0].cat, show.categories[0].sub or "", apple_categories) }} {% if output_path_error is defined and output_path_error %}

{{ output_path_error }}

{% endif %}

People roster

{% for p in show.people %} {% endfor %}
NameWebsite or Email
{{ p.name }} {% if p.href and p.href.startswith('mailto:') %} {{ p.href[7:] }} (Email) {% else %} {{ p.href or '' }} {% endif %}

Add person


Danger zone

Permanently delete this show and all its episodes. This cannot be undone.

Delete “{{ show.title }}”?

This will permanently remove the show and all its episode data from disk. There is no undo.

Before proceed, consider download a backup of the show data: Download {{ slug }}.json

To confirm, type the show slug {{ slug }} below:

Edit person

Add person to roster

{% endblock %}