{% extends "./list_editor.html" %}
{% block outer %}
{% with no_initial_form_count=True %}
{% with tag_id="inline-sounds" %}
{% with tag="a-sound-list-editor" %}
{{ block.super }}
{% endwith %}
{% endwith %}
{% endwith %}
{% endblock %}
{% block tag-attrs %}
{{ block.super }}
sound-list-url="{% url "api:sound-list" %}?program={{ object.pk }}&episode__isnull"
sound-upload-url="{% url "api:sound-list" %}"
{% endblock %}
{% block inner %}
{{ block.super }}
{% for field in sound_form %}
{% with field.name as name %}
{% with field.initial as value %}
{% with field.field as field %}
{% if name in "episode,program" %}
{% include "./form_field.html" with value=value hidden=True %}
{% elif name != "file" %}
{% include "./form_field.html" with value=value %}