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