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) ?>)
|
|
|
|
|
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
|
2020-07-10 12:20:25 +00:00
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2020-07-16 10:08:23 +00:00
|
|
|
<a class="inline-block px-4 py-2 mb-2 border hover:bg-gray-100" href="<?= route_to(
|
|
|
|
'episode_create',
|
|
|
|
$podcast->id
|
|
|
|
) ?>"><?= lang('Episode.create') ?></a>
|
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()
|
|
|
|
?>
|