blob: 05a7f789a66efa468302258ff3941a46e310d825 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<?php use Fisharebest\Webtrees\I18N; ?>
<?php use Fisharebest\Webtrees\Individual; ?>
<?php use Fisharebest\Webtrees\View; ?>
<table class="table table-sm datatable wt-table-events" data-info="false" data-paging="false" data-searching="false" data-sorting="<?= e('[[1, "asc" ]]') ?>">
<thead>
<tr>
<th>
<?= I18N::translate('Record') ?>
</th>
<th>
<?= I18N::translate('Date') ?>
</th>
<th>
<i class="icon-reminder"></i>
<span class="sr-only"><?= I18N::translate('Anniversary') ?></span>
</th>
<th>
<?= I18N::translate('Event') ?>
</th>
</tr>
</thead>
<tbody>
<?php foreach ($facts as $fact) : ?>
<?php $record = $fact->record(); ?>
<tr>
<td data-sort="<?= e($record->getSortName()) ?>">
<a href="<?= e($record->url()) ?>">
<?= $record->getFullName() ?>
</a>
<?php if ($record instanceof Individual) : ?>
<?= $record->getSexImage() ?>
<?php endif ?>
</td>
<td data-sort="<?= $fact->getDate()->julianDay() ?>">
<?= $fact->getDate()->display(true); ?>
</td>
<td data-sort="<?= $fact->anniv ?>">
<?= $fact->anniv ?>
</td>
<td data-sort="<?= $fact->getLabel() ?>">
<?= $fact->getLabel() ?>
</td>
</tr>
<?php endforeach ?>
</tbody>
</table>
<?php View::push('javascript') ?>
<script>
$(".wt-table-events").dataTable();
</script>
<?php View::endpush() ?>
|