xref: /webtrees/resources/views/modules/yahrzeit/list.phtml (revision 6676e53a41fe1ededa19cc82f6cd2e8d21214842)
1c9e6b699SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<?php foreach ($yahrzeits as $yahrzeit) : ?>
4dd6b2bfcSGreg Roach    <a href="<?= e($yahrzeit->individual->url()) ?>" class="list_item name2">
539ca88baSGreg Roach        <?= $yahrzeit->individual->fullName() ?>
6dd6b2bfcSGreg Roach    </a>
7032918ffSGreg Roach    <small><?= view('icons/sex-' . $yahrzeit->individual->sex()) ?></small>
8dd6b2bfcSGreg Roach    <div class="indent">
9*6676e53aSGreg Roach        <?= $yahrzeit->fact->date()->display(true, null, false) ?>,
10*6676e53aSGreg Roach        <?= $yahrzeit->yahrzeit_date->display(true, null, false) ?>,
11dd6b2bfcSGreg Roach        <?= I18N::translate('%s year anniversary', $yahrzeit->fact->anniv) ?>
12dd6b2bfcSGreg Roach    </div>
13dd6b2bfcSGreg Roach<?php endforeach ?>
14