blob: fa2e7c24d2a880d761c5cf763db5cf440fe8b10c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
declare(strict_types=1);
/** @var Statistics $stats */
use Fisharebest\Webtrees\Statistics;
?>
<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]) ?>
<?= view('statistics/other/chart-distribution', ['stats' => $stats]) ?>
</div>
|