18 lines
640 B
HTML
18 lines
640 B
HTML
{% extends "./page_form.html" %}
|
|
{% load static i18n humanize honeypot aircox %}
|
|
|
|
{% block page_form %}
|
|
<a-episode :page="{title: "{{ object.title }}", 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 %}
|