xref: /webtrees/resources/views/modules/todo/research-tasks.phtml (revision 3425616e7e9a1626a6133477162e0355f4782fa6)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<table class="table table-bordered table-sm datatables wt-table-tasks" data-columns="[null, null, null, null]" data-info="false" data-paging="false" data-searching="false" data-state-save="true">
4dd6b2bfcSGreg Roach    <thead>
5dd6b2bfcSGreg Roach        <tr>
6dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
7dd6b2bfcSGreg Roach                <?= I18N::translate('Date') ?>
8dd6b2bfcSGreg Roach            </th>
9dd6b2bfcSGreg Roach            <th>
10dd6b2bfcSGreg Roach                <?= I18N::translate('Record') ?>
11dd6b2bfcSGreg Roach            </th>
12dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
13dd6b2bfcSGreg Roach                <?= I18N::translate('Username') ?>
14dd6b2bfcSGreg Roach            </th>
15dd6b2bfcSGreg Roach            <th>
16dd6b2bfcSGreg Roach                <?= I18N::translate('Research task') ?>
17dd6b2bfcSGreg Roach            </th>
18dd6b2bfcSGreg Roach        </tr>
19dd6b2bfcSGreg Roach    </thead>
20dd6b2bfcSGreg Roach
21dd6b2bfcSGreg Roach    <tbody>
22dd6b2bfcSGreg Roach        <?php foreach ($tasks as $task) : ?>
23dd6b2bfcSGreg Roach            <tr>
24dd6b2bfcSGreg Roach                <td data-sort="<?= $task->getDate()->julianDay() ?>" class="d-none d-md-table-cell wt-side-block-optional">
25dd6b2bfcSGreg Roach                    <?= $task->getDate()->display() ?>
26dd6b2bfcSGreg Roach                </td>
27e7766c08SGreg Roach                <td data-sort="<?= e($task->record()->getSortName()) ?>">
28e7766c08SGreg Roach                    <a href="<?= e($task->record()->url()) ?>">
29e7766c08SGreg Roach                        <?= $task->record()->getFullName() ?>
30dd6b2bfcSGreg Roach                    </a>
31dd6b2bfcSGreg Roach                </td>
32dd6b2bfcSGreg Roach                <td class="d-none d-md-table-cell wt-side-block-optional">
33*3425616eSGreg Roach                    <?= e($task->attribute('_WT_USER')) ?>
34dd6b2bfcSGreg Roach                </td>
35dd6b2bfcSGreg Roach                <td dir="auto">
3684586c02SGreg Roach                    <?= e($task->value()) ?>
37dd6b2bfcSGreg Roach                </td>
38dd6b2bfcSGreg Roach            </tr>
39dd6b2bfcSGreg Roach        <?php endforeach ?>
40dd6b2bfcSGreg Roach    </tbody>
41dd6b2bfcSGreg Roach</table>
42