blob: f505f810d001fb7f199edcdf876be68887de7d54 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\Family;
use Fisharebest\Webtrees\I18N;
/* @var array $records */
/* @var Family $family */
?>
<?php if ($records) : ?>
<ul class="list-group list-group-flush">
<?php foreach ($records as $record) : ?>
<?php $family = $record['family']; ?>
<li class="list-group-item d-flex justify-content-between align-items-center">
<a href="<?= e($family->url()) ?>"><?= $family->fullName() ?></a>
<span class="badge badge-secondary badge-pill ml-3">
<?= I18N::plural('%s grandchild', '%s grandchildren', $record['count'], I18N::number($record['count'])) ?>
</span>
</li>
<?php endforeach; ?>
</ul>
<?php else : ?>
<div class="card-body">
<?= I18N::translate('This information is not available.') ?>
</div>
<?php endif; ?>
|