Files
aircox/aircox/templates/aircox/episode_form.html
2024-03-25 18:05:55 +01:00

18 lines
640 B
HTML

{% extends "./page_form.html" %}
{% load static i18n humanize honeypot aircox %}
{% block page_form %}
<a-episode :page="{title: &quot;{{ object.title }}&quot;, podcasts: {{ object.sounds|json }}}">
<template v-slot="{podcasts,page}">
{{ block.super }}
<hr/>
{% include "./dashboard/tracklist_editor.html" with formset=tracklist_formset %}
<hr/>
<section class="container">
<h3 class="title">{% translate "Sound files" %}</h3>
{% include "./dashboard/soundlist_editor.html" with formset=soundlist_formset %}
</section>
</template>
</a-episode>
{% endblock %}