{% 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,sound" %}
{% include "./form_field.html" with value=value hidden=True %}
{% elif name != "file" %}
{% include "./form_field.html" with value=value %}
{% endif %}
{% endwith %}
{% endwith %}
{% endwith %}
{% endfor %}