summaryrefslogtreecommitdiff
path: root/resources/views/modules/statistics-chart/other.phtml
blob: d6e374e4a0ecc1ab4f56e6228f973bc9f9d000f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php
/** @var \Fisharebest\Webtrees\Stats $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>