blob: c681580a1bec8f1af83902ab7db0fd610357216a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
declare(strict_types=1);
/** @var \Fisharebest\Webtrees\Statistics $stats */
?>
<div class="container pt-3">
<?= view('statistics/other/total-records', ['stats' => $stats]) ?>
<?= view('statistics/other/total-events', ['stats' => $stats]) ?>
<?= view('statistics/other/chart-objects', ['stats' => $stats]) ?>
<?= view('statistics/other/chart-sources', ['stats' => $stats]) ?>
<?= view('statistics/other/places', ['stats' => $stats]) ?>
<?= $stats->chartDistribution() ?>
</div>
|