xref: /webtrees/resources/views/calendar-list.phtml (revision 40296c5fe3cc3b9b2efcff7ca2559d76a3a00260)
1*40296c5fSGreg Roach<?php
2*40296c5fSGreg Roach
3*40296c5fSGreg Roachuse Fisharebest\Webtrees\Family;
4*40296c5fSGreg Roachuse Fisharebest\Webtrees\I18N;
5*40296c5fSGreg Roachuse Fisharebest\Webtrees\Individual;
6*40296c5fSGreg Roach
7*40296c5fSGreg Roach?>
8*40296c5fSGreg Roach
9*40296c5fSGreg Roach<table class="w-100" role="presentation">
10*40296c5fSGreg Roach    <tr>
11*40296c5fSGreg Roach        <td class="wt-page-options-label text-center w-50">
12*40296c5fSGreg Roach            <?= view('icons/individual') ?>
13*40296c5fSGreg Roach            <?= I18N::plural('%s individual', '%s individuals', count($individuals), I18N::number(count($individuals))) ?>
14*40296c5fSGreg Roach        </td>
15*40296c5fSGreg Roach
16*40296c5fSGreg Roach        <td class="wt-page-options-label text-center w-50">
17*40296c5fSGreg Roach            <?= view('icons/family') ?>
18*40296c5fSGreg Roach            <?= I18N::plural('%s family', '%s families', count($families), I18N::number(count($families))) ?>
19*40296c5fSGreg Roach        </td>
20*40296c5fSGreg Roach    </tr>
21*40296c5fSGreg Roach
22*40296c5fSGreg Roach    <tr>
23*40296c5fSGreg Roach        <td class="wt-page-options-value">
24*40296c5fSGreg Roach            <ul class="list-unstyled">
25*40296c5fSGreg Roach                <?php foreach ($individuals as $xref => $facts) : ?>
26*40296c5fSGreg Roach                    <li>
27*40296c5fSGreg Roach                        <a href="<?= e(Individual::getInstance($xref, $tree)->url()) ?>">
28*40296c5fSGreg Roach                            <?= Individual::getInstance($xref, $tree)->fullName() ?>
29*40296c5fSGreg Roach                        </a>
30*40296c5fSGreg Roach
31*40296c5fSGreg Roach                        <div class="indent"><?= $facts ?></div>
32*40296c5fSGreg Roach                    </li>
33*40296c5fSGreg Roach                <?php endforeach ?>
34*40296c5fSGreg Roach            </ul>
35*40296c5fSGreg Roach        </td>
36*40296c5fSGreg Roach        <td class="wt-page-options-value">
37*40296c5fSGreg Roach            <ul class="list-unstyled">
38*40296c5fSGreg Roach                <?php foreach ($families as $xref => $facts) : ?>
39*40296c5fSGreg Roach                    <li>
40*40296c5fSGreg Roach                        <a href="<?= e(Family::getInstance($xref, $tree)->url()) ?>">
41*40296c5fSGreg Roach                            <?= Family::getInstance($xref, $tree)->fullName() ?>
42*40296c5fSGreg Roach                        </a>
43*40296c5fSGreg Roach
44*40296c5fSGreg Roach                        <div class="indent"><?= $facts ?></div>
45*40296c5fSGreg Roach                    </li>
46*40296c5fSGreg Roach                <?php endforeach ?>
47*40296c5fSGreg Roach            </ul>
48*40296c5fSGreg Roach        </td>
49*40296c5fSGreg Roach    </tr>
50*40296c5fSGreg Roach</table>
51