xref: /webtrees/resources/views/modules/statistics-chart/other.phtml (revision e11ffd0c922a07c13f23d38c7d9c82edce5298f5)
1<?php
2/** @var \Fisharebest\Webtrees\Stats $stats */
3?>
4
5<div class="container pt-3">
6    <?= view('statistics/other/total-records', ['stats' => $stats]) ?>
7    <?= view('statistics/other/total-events', ['stats' => $stats]) ?>
8    <?= view('statistics/other/chart-objects', ['stats' => $stats]) ?>
9    <?= view('statistics/other/chart-sources', ['stats' => $stats]) ?>
10    <?= view('statistics/other/places', ['stats' => $stats]) ?>
11    <?= $stats->chartDistribution() ?>
12</div>
13