mirror of
https://code.castopod.org/adaures/castopod
synced 2025-05-10 16:25:47 +00:00

- update CI process to include quality stage (tests + code review) - add captainhook to install git pre-commit & pre-push hooks - remove .devcontainer Dockerfile to use project's docker-compose services: all services can now be started automatically using vscode - update docs/setup-development.md
62 lines
1.7 KiB
PHP
62 lines
1.7 KiB
PHP
<?= $this->extend('admin/_layout') ?>
|
|
|
|
<?= $this->section('title') ?>
|
|
<?= $podcast->title ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('pageTitle') ?>
|
|
<?= $podcast->title ?>
|
|
<?= $this->endSection() ?>
|
|
|
|
<?= $this->section('content') ?>
|
|
|
|
<div class="lg:divide-x lg:grid lg:grid-cols-2">
|
|
|
|
<div class="mb-12 mr-6 text-center">
|
|
<h2><?= lang('Charts.by_domain_weekly') ?></h2>
|
|
<div class="chart-pie" id="by-domain-weekly-pie" data-chart-type="pie-chart" data-chart-url="<?= route_to(
|
|
'analytics-data',
|
|
$podcast->id,
|
|
'WebsiteByReferer',
|
|
'ByDomainWeekly',
|
|
) ?>"></div>
|
|
</div>
|
|
|
|
|
|
<div class="mb-12 mr-6 text-center">
|
|
<h2><?= lang('Charts.by_domain_yearly') ?></h2>
|
|
<div class="chart-pie" id="by-domain-yearly-pie" data-chart-type="pie-chart" data-chart-url="<?= route_to(
|
|
'analytics-data',
|
|
$podcast->id,
|
|
'WebsiteByReferer',
|
|
'ByDomainYearly',
|
|
) ?>"></div>
|
|
</div>
|
|
|
|
|
|
<div class="mb-12 mr-6 text-center">
|
|
<h2><?= lang('Charts.by_entry_page') ?></h2>
|
|
<div class="chart-pie" id="by-entry-page-pie" data-chart-type="pie-chart" data-chart-url="<?= route_to(
|
|
'analytics-full-data',
|
|
$podcast->id,
|
|
'WebsiteByEntryPage',
|
|
) ?>"></div>
|
|
</div>
|
|
|
|
|
|
<div class="mb-12 mr-6 text-center">
|
|
<h2><?= lang('Charts.by_browser') ?></h2>
|
|
<div class="chart-pie" id="by-browser-pie" data-chart-type="pie-chart" data-chart-url="<?= route_to(
|
|
'analytics-full-data',
|
|
$podcast->id,
|
|
'WebsiteByBrowser',
|
|
) ?>"></div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="/assets/charts.js" type="module"></script>
|
|
<?= $this->endSection() ?>
|