2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->extend('admin/_layout') ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= lang('Episode.create') ?>
|
|
|
|
<?= $this->endSection() ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= lang('Episode.create') ?>
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('content') ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_open_multipart(route_to('episode-create', $podcast->id), [
|
2020-06-26 14:34:52 +00:00
|
|
|
'method' => 'post',
|
2020-10-02 15:38:16 +00:00
|
|
|
'class' => 'flex flex-col',
|
2020-06-26 14:34:52 +00:00
|
|
|
]) ?>
|
|
|
|
<?= csrf_field() ?>
|
2020-10-22 17:41:59 +00:00
|
|
|
<?= form_hidden('client_timezone', 'UTC') ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2021-04-08 10:45:58 +00:00
|
|
|
<div class="inline-flex w-full p-2 mb-4 text-sm font-semibold text-yellow-800 bg-red-100 border border-red-300 rounded" role="alert">
|
|
|
|
<?= icon('alert', 'mr-2 text-lg flex-shrink-0') .
|
|
|
|
lang('Episode.form.warning') ?>
|
|
|
|
</div>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= form_section(
|
|
|
|
lang('Episode.form.info_section_title'),
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.info_section_subtitle'),
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-10-15 11:07:32 +00:00
|
|
|
<?= form_label(
|
2021-05-03 17:39:58 +00:00
|
|
|
lang('Episode.form.audio_file'),
|
|
|
|
'audio_file',
|
2020-10-15 11:07:32 +00:00
|
|
|
[],
|
2021-05-03 17:39:58 +00:00
|
|
|
lang('Episode.form.audio_file_hint'),
|
2020-10-15 11:07:32 +00:00
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
2021-05-03 17:39:58 +00:00
|
|
|
'id' => 'audio_file',
|
|
|
|
'name' => 'audio_file',
|
2020-10-15 11:07:32 +00:00
|
|
|
'class' => 'form-input mb-4',
|
|
|
|
'required' => 'required',
|
|
|
|
'type' => 'file',
|
|
|
|
'accept' => '.mp3,.m4a',
|
|
|
|
]) ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.image'),
|
|
|
|
'image',
|
|
|
|
[],
|
|
|
|
lang('Episode.form.image_hint'),
|
2021-04-08 10:45:58 +00:00
|
|
|
true,
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-09-08 11:45:17 +00:00
|
|
|
<?= form_input([
|
|
|
|
'id' => 'image',
|
|
|
|
'name' => 'image',
|
|
|
|
'class' => 'form-input',
|
|
|
|
'type' => 'file',
|
|
|
|
'accept' => '.jpg,.jpeg,.png',
|
|
|
|
]) ?>
|
|
|
|
<small class="mb-4 text-gray-600"><?= lang(
|
2021-04-08 10:45:58 +00:00
|
|
|
'Common.forms.image_size_hint',
|
2020-09-08 11:45:17 +00:00
|
|
|
) ?></small>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.title'),
|
|
|
|
'title',
|
|
|
|
[],
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.title_hint'),
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_input([
|
|
|
|
'id' => 'title',
|
|
|
|
'name' => 'title',
|
|
|
|
'class' => 'form-input mb-4',
|
|
|
|
'value' => old('title'),
|
|
|
|
'required' => 'required',
|
|
|
|
'data-slugify' => 'title',
|
|
|
|
]) ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.slug'),
|
|
|
|
'slug',
|
|
|
|
[],
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.slug_hint'),
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-08-14 18:27:57 +00:00
|
|
|
<?= form_input([
|
|
|
|
'id' => 'slug',
|
|
|
|
'name' => 'slug',
|
|
|
|
'class' => 'form-input mb-4',
|
|
|
|
'value' => old('slug'),
|
|
|
|
'required' => 'required',
|
|
|
|
'data-slugify' => 'slug',
|
|
|
|
]) ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<div class="flex flex-col mb-4 gap-x-2 gap-y-4 md:flex-row">
|
|
|
|
<div class="flex flex-col flex-1">
|
|
|
|
<?= form_label(lang('Episode.form.season_number'), 'season_number') ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'season_number',
|
|
|
|
'name' => 'season_number',
|
|
|
|
'class' => 'form-input w-full',
|
|
|
|
'value' => old('season_number'),
|
|
|
|
'type' => 'number',
|
|
|
|
]) ?>
|
|
|
|
</div>
|
|
|
|
<div class="flex flex-col flex-1">
|
|
|
|
<?= form_label(lang('Episode.form.episode_number'), 'episode_number') ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'episode_number',
|
|
|
|
'name' => 'episode_number',
|
|
|
|
'class' => 'form-input w-full',
|
|
|
|
'value' => old('episode_number'),
|
|
|
|
'type' => 'number',
|
|
|
|
]) ?>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2020-10-13 16:16:45 +00:00
|
|
|
<?= form_fieldset('', ['class' => 'mb-4']) ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<legend>
|
|
|
|
<?= lang('Episode.form.type.label') .
|
|
|
|
hint_tooltip(lang('Episode.form.type.hint'), 'ml-1') ?>
|
|
|
|
</legend>
|
|
|
|
<?= form_radio(
|
|
|
|
['id' => 'full', 'name' => 'type', 'class' => 'form-radio-btn'],
|
|
|
|
'full',
|
2021-04-08 10:45:58 +00:00
|
|
|
old('type') ? old('type') == 'full' : true,
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<label for="full" class="inline-flex items-center">
|
|
|
|
<?= lang('Episode.form.type.full') ?>
|
|
|
|
</label>
|
|
|
|
<?= form_radio(
|
|
|
|
['id' => 'trailer', 'name' => 'type', 'class' => 'form-radio-btn'],
|
|
|
|
'trailer',
|
2021-05-06 14:00:48 +00:00
|
|
|
old('type') && old('type') == 'trailer',
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<label for="trailer" class="inline-flex items-center">
|
|
|
|
<?= lang('Episode.form.type.trailer') ?>
|
|
|
|
</label>
|
|
|
|
<?= form_radio(
|
2020-10-15 11:07:32 +00:00
|
|
|
['id' => 'bonus', 'name' => 'type', 'class' => 'form-radio-btn'],
|
2020-10-02 15:38:16 +00:00
|
|
|
'bonus',
|
2021-05-06 14:00:48 +00:00
|
|
|
old('type') && old('type') == 'bonus',
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<label for="bonus" class="inline-flex items-center">
|
|
|
|
<?= lang('Episode.form.type.bonus') ?>
|
|
|
|
</label>
|
|
|
|
<?= form_fieldset_close() ?>
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= form_fieldset('', ['class' => 'flex mb-6 gap-1']) ?>
|
|
|
|
<legend>
|
|
|
|
<?= lang('Episode.form.parental_advisory.label') .
|
|
|
|
hint_tooltip(lang('Episode.form.parental_advisory.hint'), 'ml-1') ?>
|
|
|
|
</legend>
|
|
|
|
<?= form_radio(
|
|
|
|
[
|
|
|
|
'id' => 'undefined',
|
|
|
|
'name' => 'parental_advisory',
|
|
|
|
'class' => 'form-radio-btn',
|
|
|
|
],
|
|
|
|
'undefined',
|
|
|
|
old('parental_advisory')
|
|
|
|
? old('parental_advisory') === 'undefined'
|
2021-04-08 10:45:58 +00:00
|
|
|
: true,
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?>
|
|
|
|
<label for="undefined"><?= lang(
|
2021-04-08 10:45:58 +00:00
|
|
|
'Episode.form.parental_advisory.undefined',
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?></label>
|
|
|
|
<?= form_radio(
|
|
|
|
[
|
|
|
|
'id' => 'clean',
|
|
|
|
'name' => 'parental_advisory',
|
|
|
|
'class' => 'form-radio-btn',
|
|
|
|
],
|
|
|
|
'clean',
|
2021-05-06 14:00:48 +00:00
|
|
|
old('parental_advisory') && old('parental_advisory') === 'clean',
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?>
|
|
|
|
<label for="clean"><?= lang(
|
2021-04-08 10:45:58 +00:00
|
|
|
'Episode.form.parental_advisory.clean',
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?></label>
|
|
|
|
<?= form_radio(
|
|
|
|
[
|
|
|
|
'id' => 'explicit',
|
|
|
|
'name' => 'parental_advisory',
|
|
|
|
'class' => 'form-radio-btn',
|
|
|
|
],
|
|
|
|
'explicit',
|
2021-05-06 14:00:48 +00:00
|
|
|
old('parental_advisory') && old('parental_advisory') === 'explicit',
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?>
|
|
|
|
<label for="explicit"><?= lang(
|
2021-04-08 10:45:58 +00:00
|
|
|
'Episode.form.parental_advisory.explicit',
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?></label>
|
|
|
|
<?= form_fieldset_close() ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= form_section_close() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= form_section(
|
|
|
|
lang('Episode.form.show_notes_section_title'),
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.show_notes_section_subtitle'),
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
|
2020-08-14 18:27:57 +00:00
|
|
|
<div class="mb-4">
|
|
|
|
<?= form_label(lang('Episode.form.description'), 'description') ?>
|
|
|
|
<?= form_textarea(
|
|
|
|
[
|
|
|
|
'id' => 'description',
|
|
|
|
'name' => 'description',
|
|
|
|
'class' => 'form-textarea',
|
|
|
|
'required' => 'required',
|
|
|
|
],
|
|
|
|
old('description', '', false),
|
2021-04-08 10:45:58 +00:00
|
|
|
'data-editor="markdown"',
|
2020-08-14 18:27:57 +00:00
|
|
|
) ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
</div>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<div class="mb-4">
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.description_footer'),
|
|
|
|
'description_footer',
|
|
|
|
[],
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.description_footer_hint'),
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<?= form_textarea(
|
|
|
|
[
|
|
|
|
'id' => 'description_footer',
|
|
|
|
'name' => 'description_footer',
|
|
|
|
'class' => 'form-textarea',
|
|
|
|
],
|
|
|
|
old(
|
|
|
|
'description_footer',
|
2020-10-29 15:45:19 +00:00
|
|
|
$podcast->episode_description_footer_markdown ?? '',
|
2021-04-08 10:45:58 +00:00
|
|
|
false,
|
2020-10-02 15:38:16 +00:00
|
|
|
),
|
2021-04-08 10:45:58 +00:00
|
|
|
'data-editor="markdown"',
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<?= form_section_close() ?>
|
|
|
|
|
2020-12-23 14:11:38 +00:00
|
|
|
<?= form_section(
|
|
|
|
lang('Episode.form.location_section_title'),
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.location_section_subtitle'),
|
2020-12-23 14:11:38 +00:00
|
|
|
) ?>
|
|
|
|
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.location_name'),
|
|
|
|
'location_name',
|
|
|
|
[],
|
|
|
|
lang('Episode.form.location_name_hint'),
|
2021-04-08 10:45:58 +00:00
|
|
|
true,
|
2020-12-23 14:11:38 +00:00
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'location_name',
|
|
|
|
'name' => 'location_name',
|
|
|
|
'class' => 'form-input mb-4',
|
|
|
|
'value' => old('location_name'),
|
|
|
|
]) ?>
|
|
|
|
<?= form_section_close() ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
|
2020-11-24 20:18:08 +00:00
|
|
|
<?= form_section(
|
|
|
|
lang('Episode.form.additional_files_section_title'),
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.additional_files_section_subtitle'),
|
2020-11-24 20:18:08 +00:00
|
|
|
) ?>
|
2021-05-03 17:39:58 +00:00
|
|
|
|
|
|
|
<?= form_fieldset('', ['class' => 'flex flex-col mb-4']) ?>
|
|
|
|
<legend><?= lang('Episode.form.transcript') .
|
|
|
|
'<small class="ml-1 lowercase">(' .
|
|
|
|
lang('Common.optional') .
|
|
|
|
')</small>' .
|
|
|
|
hint_tooltip(lang('Episode.form.transcript_hint'), 'ml-1') ?></legend>
|
|
|
|
<div class="mb-4 form-input-tabs">
|
|
|
|
<input type="radio" name="transcript-choice" id="transcript-file-upload-choice" aria-controls="transcript-file-upload-choice" value="upload-file" <?= old(
|
|
|
|
'transcript-choice',
|
|
|
|
) !== 'remote-url'
|
|
|
|
? 'checked'
|
|
|
|
: '' ?> />
|
|
|
|
<label for="transcript-file-upload-choice"><?= lang(
|
|
|
|
'Common.forms.upload_file',
|
|
|
|
) ?></label>
|
|
|
|
|
|
|
|
<input type="radio" name="transcript-choice" id="transcript-file-remote-url-choice" aria-controls="transcript-file-remote-url-choice" value="remote-url" <?= old(
|
|
|
|
'transcript-choice',
|
|
|
|
) === 'remote-url'
|
|
|
|
? 'checked'
|
|
|
|
: '' ?> />
|
|
|
|
<label for="transcript-file-remote-url-choice"><?= lang(
|
|
|
|
'Common.forms.remote_url',
|
|
|
|
) ?></label>
|
|
|
|
|
|
|
|
<div class="py-2 tab-panels">
|
|
|
|
<section id="transcript-file-upload" class="flex items-center tab-panel">
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.transcript_file'),
|
|
|
|
'transcript_file',
|
|
|
|
['class' => 'sr-only'],
|
|
|
|
lang('Episode.form.transcript_file'),
|
|
|
|
true,
|
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'transcript_file',
|
|
|
|
'name' => 'transcript_file',
|
|
|
|
'class' => 'form-input',
|
|
|
|
'type' => 'file',
|
|
|
|
'accept' => '.txt,.html,.srt,.json',
|
|
|
|
]) ?>
|
|
|
|
</section>
|
|
|
|
<section id="transcript-file-remote-url" class="tab-panel">
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.transcript_file_remote_url'),
|
|
|
|
'transcript_file_remote_url',
|
|
|
|
['class' => 'sr-only'],
|
|
|
|
lang('Episode.form.transcript_file_remote_url'),
|
|
|
|
true,
|
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'transcript_file_remote_url',
|
|
|
|
'name' => 'transcript_file_remote_url',
|
|
|
|
'class' => 'form-input w-full',
|
|
|
|
'type' => 'url',
|
|
|
|
'placeholder' => 'https://...',
|
|
|
|
'value' => old('transcript_file_remote_url'),
|
|
|
|
]) ?>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?= form_fieldset_close() ?>
|
|
|
|
|
|
|
|
<?= form_fieldset('', ['class' => 'flex flex-col mb-4']) ?>
|
|
|
|
<legend><?= lang('Episode.form.chapters') .
|
|
|
|
'<small class="ml-1 lowercase">(' .
|
|
|
|
lang('Common.optional') .
|
|
|
|
')</small>' .
|
|
|
|
hint_tooltip(lang('Episode.form.chapters_hint'), 'ml-1') ?></legend>
|
|
|
|
<div class="mb-4 form-input-tabs">
|
|
|
|
<input type="radio" name="chapters-choice" id="chapters-file-upload-choice" aria-controls="chapters-file-upload-choice" value="upload-file" <?= old(
|
|
|
|
'chapters-choice',
|
|
|
|
) !== 'remote-url'
|
|
|
|
? 'checked'
|
|
|
|
: '' ?> />
|
|
|
|
<label for="chapters-file-upload-choice"><?= lang(
|
|
|
|
'Common.forms.upload_file',
|
|
|
|
) ?></label>
|
|
|
|
|
|
|
|
<input type="radio" name="chapters-choice" id="chapters-file-remote-url-choice" aria-controls="chapters-file-remote-url-choice" value="remote-url" <?= old(
|
|
|
|
'chapters-choice',
|
|
|
|
) === 'remote-url'
|
|
|
|
? 'checked'
|
|
|
|
: '' ?> />
|
|
|
|
<label for="chapters-file-remote-url-choice"><?= lang(
|
|
|
|
'Common.forms.remote_url',
|
|
|
|
) ?></label>
|
|
|
|
|
|
|
|
<div class="py-2 tab-panels">
|
|
|
|
<section id="chapters-file-upload" class="flex items-center tab-panel">
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.chapters_file'),
|
|
|
|
'chapters_file',
|
|
|
|
['class' => 'sr-only'],
|
|
|
|
lang('Episode.form.chapters_file'),
|
|
|
|
true,
|
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'chapters_file',
|
|
|
|
'name' => 'chapters_file',
|
|
|
|
'class' => 'form-input',
|
|
|
|
'type' => 'file',
|
|
|
|
'accept' => '.json',
|
|
|
|
]) ?>
|
|
|
|
</section>
|
|
|
|
<section id="chapters-file-remote-url" class="tab-panel">
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.chapters_file_remote_url'),
|
|
|
|
'chapters_file_remote_url',
|
|
|
|
['class' => 'sr-only'],
|
|
|
|
lang('Episode.form.chapters_file_remote_url'),
|
|
|
|
true,
|
|
|
|
) ?>
|
|
|
|
<?= form_input([
|
|
|
|
'id' => 'chapters_file_remote_url',
|
|
|
|
'name' => 'chapters_file_remote_url',
|
|
|
|
'class' => 'form-input w-full',
|
|
|
|
'type' => 'url',
|
|
|
|
'placeholder' => 'https://...',
|
|
|
|
'value' => old('chapters_file_remote_url'),
|
|
|
|
]) ?>
|
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<?= form_fieldset_close() ?>
|
|
|
|
|
2020-11-24 20:18:08 +00:00
|
|
|
<?= form_section_close() ?>
|
|
|
|
|
2021-03-19 16:12:36 +00:00
|
|
|
<?= form_section(
|
|
|
|
lang('Episode.form.advanced_section_title'),
|
2021-04-08 10:45:58 +00:00
|
|
|
lang('Episode.form.advanced_section_subtitle'),
|
2021-03-19 16:12:36 +00:00
|
|
|
) ?>
|
|
|
|
<?= form_label(
|
|
|
|
lang('Episode.form.custom_rss'),
|
|
|
|
'custom_rss',
|
|
|
|
[],
|
|
|
|
lang('Episode.form.custom_rss_hint'),
|
2021-04-08 10:45:58 +00:00
|
|
|
true,
|
2021-03-19 16:12:36 +00:00
|
|
|
) ?>
|
|
|
|
<?= form_textarea([
|
|
|
|
'id' => 'custom_rss',
|
|
|
|
'name' => 'custom_rss',
|
|
|
|
'class' => 'form-textarea',
|
|
|
|
'value' => old('custom_rss'),
|
|
|
|
]) ?>
|
|
|
|
<?= form_section_close() ?>
|
|
|
|
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= form_switch(
|
|
|
|
lang('Episode.form.block') .
|
|
|
|
hint_tooltip(lang('Episode.form.block_hint'), 'ml-1'),
|
|
|
|
['id' => 'block', 'name' => 'block'],
|
|
|
|
'yes',
|
2021-04-08 10:45:58 +00:00
|
|
|
old('block', false),
|
2021-04-02 17:20:02 +00:00
|
|
|
) ?>
|
|
|
|
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= button(
|
|
|
|
lang('Episode.form.submit_create'),
|
2021-05-06 14:00:48 +00:00
|
|
|
'',
|
2020-10-02 15:38:16 +00:00
|
|
|
['variant' => 'primary'],
|
2021-04-08 10:45:58 +00:00
|
|
|
['type' => 'submit', 'class' => 'self-end'],
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
2020-06-26 14:34:52 +00:00
|
|
|
|
|
|
|
<?= form_close() ?>
|
|
|
|
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|