2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->extend('admin/_layout') ?>
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<?= $this->section('title') ?>
|
|
|
|
|
|
|
|
<?= lang('Episode.all_podcast_episodes') ?> (<?= count($podcast->episodes) ?>)
|
2020-08-05 16:10:39 +00:00
|
|
|
<a class="inline-flex items-center px-2 py-1 mb-2 ml-2 text-sm text-white bg-green-500 rounded shadow-xs outline-none hover:bg-green-600 focus:shadow-outline" href="<?= route_to(
|
2020-08-14 18:27:57 +00:00
|
|
|
'episode-create',
|
2020-08-05 16:10:39 +00:00
|
|
|
$podcast->id
|
|
|
|
) ?>">
|
|
|
|
<?= icon('add', 'mr-2') ?>
|
|
|
|
<?= lang('Episode.create') ?></a>
|
2020-07-16 10:08:23 +00:00
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= view('admin/_partials/_episode-list.php', [
|
|
|
|
'episodes' => $podcast->episodes,
|
|
|
|
]) ?>
|
2020-07-10 12:20:25 +00:00
|
|
|
|
|
|
|
<?= $this->endSection()
|
|
|
|
?>
|