xref: /webtrees/resources/views/modules/todo/research-tasks.phtml (revision d70512ab02636ee884ef6d7907223ed02c754ff5)
1*d70512abSGreg Roach<?php
2*d70512abSGreg Roach
3*d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
4*d70512abSGreg Roach
5*d70512abSGreg Roach?>
6dd6b2bfcSGreg Roach
7dd6b2bfcSGreg 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">
8dd6b2bfcSGreg Roach    <thead>
9dd6b2bfcSGreg Roach        <tr>
10dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
11dd6b2bfcSGreg Roach                <?= I18N::translate('Date') ?>
12dd6b2bfcSGreg Roach            </th>
13dd6b2bfcSGreg Roach            <th>
14dd6b2bfcSGreg Roach                <?= I18N::translate('Record') ?>
15dd6b2bfcSGreg Roach            </th>
16dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
17dd6b2bfcSGreg Roach                <?= I18N::translate('Username') ?>
18dd6b2bfcSGreg Roach            </th>
19dd6b2bfcSGreg Roach            <th>
20dd6b2bfcSGreg Roach                <?= I18N::translate('Research task') ?>
21dd6b2bfcSGreg Roach            </th>
22dd6b2bfcSGreg Roach        </tr>
23dd6b2bfcSGreg Roach    </thead>
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach    <tbody>
26dd6b2bfcSGreg Roach        <?php foreach ($tasks as $task) : ?>
27dd6b2bfcSGreg Roach            <tr>
282decada7SGreg Roach                <td data-sort="<?= $task->date()->julianDay() ?>" class="d-none d-md-table-cell wt-side-block-optional">
292decada7SGreg Roach                    <?= $task->date()->display() ?>
30dd6b2bfcSGreg Roach                </td>
3139ca88baSGreg Roach                <td data-sort="<?= e($task->record()->sortName()) ?>">
32e7766c08SGreg Roach                    <a href="<?= e($task->record()->url()) ?>">
3339ca88baSGreg Roach                        <?= $task->record()->fullName() ?>
34dd6b2bfcSGreg Roach                    </a>
35dd6b2bfcSGreg Roach                </td>
36dd6b2bfcSGreg Roach                <td class="d-none d-md-table-cell wt-side-block-optional">
373425616eSGreg Roach                    <?= e($task->attribute('_WT_USER')) ?>
38dd6b2bfcSGreg Roach                </td>
39dd6b2bfcSGreg Roach                <td dir="auto">
4084586c02SGreg Roach                    <?= e($task->value()) ?>
41dd6b2bfcSGreg Roach                </td>
42dd6b2bfcSGreg Roach            </tr>
43dd6b2bfcSGreg Roach        <?php endforeach ?>
44dd6b2bfcSGreg Roach    </tbody>
45dd6b2bfcSGreg Roach</table>
46