2021-09-02 16:34:25 +00:00
|
|
|
<?= $this->extend('_layout') ?>
|
2020-10-14 10:38:48 +00:00
|
|
|
|
|
|
|
<?= $this->section('title') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($podcast->title) ?>
|
2020-10-14 10:38:48 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('pageTitle') ?>
|
2022-03-04 14:33:48 +00:00
|
|
|
<?= esc($podcast->title) ?>
|
2020-10-14 10:38:48 +00:00
|
|
|
<?= $this->endSection() ?>
|
|
|
|
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
|
2021-09-07 15:43:09 +00:00
|
|
|
<div class="grid grid-cols-1 gap-4 lg:grid-cols-2">
|
|
|
|
<Charts.XY class="col-span-1" title="<?= lang('Charts.podcast_by_day') ?>" dataUrl="<?= route_to(
|
2023-02-22 16:29:45 +00:00
|
|
|
'analytics-data',
|
|
|
|
$podcast->id,
|
|
|
|
'Podcast',
|
|
|
|
'ByDay',
|
|
|
|
) ?>"/>
|
2021-09-07 15:43:09 +00:00
|
|
|
|
|
|
|
<Charts.XY class="col-span-1" title="<?= lang('Charts.podcast_by_month') ?>" dataUrl="<?= route_to(
|
2023-02-22 16:29:45 +00:00
|
|
|
'analytics-data',
|
|
|
|
$podcast->id,
|
|
|
|
'Podcast',
|
|
|
|
'ByMonth',
|
|
|
|
) ?>"/>
|
2020-10-14 10:38:48 +00:00
|
|
|
|
2021-09-07 15:43:09 +00:00
|
|
|
<Charts.XY class="col-span-1" title="<?= lang('Charts.podcast_by_bandwidth') ?>" dataUrl="<?= route_to(
|
2023-02-22 16:29:45 +00:00
|
|
|
'analytics-data',
|
|
|
|
$podcast->id,
|
|
|
|
'Podcast',
|
|
|
|
'BandwidthByDay',
|
|
|
|
) ?>"/>
|
2020-10-14 10:38:48 +00:00
|
|
|
</div>
|
|
|
|
|
2021-09-08 15:51:33 +00:00
|
|
|
<?= service('vite')
|
|
|
|
->asset('js/charts.ts', 'js') ?>
|
2020-10-14 10:38:48 +00:00
|
|
|
<?= $this->endSection() ?>
|