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