2021-08-23 11:05:16 +00:00
|
|
|
<?= $this->extend('Modules\Admin\Views\_layout') ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
|
|
|
<?= $podcast->title ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
|
|
<?= $podcast->title ?>
|
2021-04-02 17:20:02 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerLeft') ?>
|
2021-05-12 14:00:25 +00:00
|
|
|
<?= location_link($podcast->location, 'ml-4 text-sm') ?>
|
2020-10-02 15:38:16 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('headerRight') ?>
|
|
|
|
<?= button(
|
|
|
|
lang('Podcast.edit'),
|
|
|
|
route_to('podcast-edit', $podcast->id),
|
2021-04-02 17:20:02 +00:00
|
|
|
['variant' => 'primary', 'iconLeft' => 'edit'],
|
|
|
|
['class' => 'mr-2'],
|
2020-10-02 15:38:16 +00:00
|
|
|
) ?>
|
|
|
|
<?= button(lang('Episode.create'), route_to('episode-create', $podcast->id), [
|
2021-04-02 17:20:02 +00:00
|
|
|
'variant' => 'accent',
|
2020-10-02 15:38:16 +00:00
|
|
|
'iconLeft' => 'add',
|
|
|
|
]) ?>
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-08-23 11:05:16 +00:00
|
|
|
<?= view_cell('Modules\Admin\Controllers\PodcastController::latestEpisodes', [
|
2020-10-02 15:38:16 +00:00
|
|
|
'limit' => 5,
|
2020-10-05 08:44:51 +00:00
|
|
|
'podcast_id' => $podcast->id,
|
2020-10-02 15:38:16 +00:00
|
|
|
]) ?>
|
|
|
|
|
2020-07-27 09:35:34 +00:00
|
|
|
<?= $this->endSection() ?>
|