xref: /webtrees/resources/views/modules/todo/research-tasks.phtml (revision a8f83fd89fae22c21bcddd599dd0b44788bd7064)
1d70512abSGreg Roach<?php
2d70512abSGreg Roach
310e06497SGreg Roachdeclare(strict_types=1);
410e06497SGreg Roach
501221f27SGreg Roachuse Fisharebest\Webtrees\Fact;
6d70512abSGreg Roachuse Fisharebest\Webtrees\I18N;
701221f27SGreg Roachuse Illuminate\Support\Collection;
801221f27SGreg Roach
901221f27SGreg Roach/**
1001221f27SGreg Roach * @var int                  $limit_high
1101221f27SGreg Roach * @var int                  $limit_low
1236779af1SGreg Roach * @var Collection<int,Fact> $tasks
1301221f27SGreg Roach */
14d70512abSGreg Roach
15d70512abSGreg Roach?>
16dd6b2bfcSGreg Roach
17b4139381SGreg Roach<table
18b4139381SGreg Roach    class="table table-bordered table-sm wt-table-tasks datatables d-none"
19*a8f83fd8SGreg Roach    style="table-layout: fixed"
20b4139381SGreg Roach    <?= view('lists/datatables-attributes') ?>
21dc270d8cSGreg Roach    data-paging="<?= $tasks->count() >= $limit_high ? 'true' : 'false' ?>"
22e24053e5SGreg Roach    data-filter="false"
23e24053e5SGreg Roach    data-info="false"
24e24053e5SGreg Roach    data-length-change="false"
2501221f27SGreg Roach    data-page-length="<?= e($limit_low) ?>"
26b4139381SGreg Roach>
27dd6b2bfcSGreg Roach    <thead>
28dd6b2bfcSGreg Roach        <tr>
29dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
30dd6b2bfcSGreg Roach                <?= I18N::translate('Date') ?>
31dd6b2bfcSGreg Roach            </th>
32dd6b2bfcSGreg Roach            <th>
33dd6b2bfcSGreg Roach                <?= I18N::translate('Record') ?>
34dd6b2bfcSGreg Roach            </th>
35dd6b2bfcSGreg Roach            <th class="d-none d-md-table-cell wt-side-block-optional">
36dd6b2bfcSGreg Roach                <?= I18N::translate('Username') ?>
37dd6b2bfcSGreg Roach            </th>
38*a8f83fd8SGreg Roach            <th class="w-50">
39dd6b2bfcSGreg Roach                <?= I18N::translate('Research task') ?>
40dd6b2bfcSGreg Roach            </th>
41dd6b2bfcSGreg Roach        </tr>
42dd6b2bfcSGreg Roach    </thead>
43dd6b2bfcSGreg Roach
44dd6b2bfcSGreg Roach    <tbody>
45dd6b2bfcSGreg Roach        <?php foreach ($tasks as $task) : ?>
46dd6b2bfcSGreg Roach            <tr>
472decada7SGreg Roach                <td data-sort="<?= $task->date()->julianDay() ?>" class="d-none d-md-table-cell wt-side-block-optional">
482decada7SGreg Roach                    <?= $task->date()->display() ?>
49dd6b2bfcSGreg Roach                </td>
5039ca88baSGreg Roach                <td data-sort="<?= e($task->record()->sortName()) ?>">
51e7766c08SGreg Roach                    <a href="<?= e($task->record()->url()) ?>">
5239ca88baSGreg Roach                        <?= $task->record()->fullName() ?>
53dd6b2bfcSGreg Roach                    </a>
54dd6b2bfcSGreg Roach                </td>
55dd6b2bfcSGreg Roach                <td class="d-none d-md-table-cell wt-side-block-optional">
563425616eSGreg Roach                    <?= e($task->attribute('_WT_USER')) ?>
57dd6b2bfcSGreg Roach                </td>
58*a8f83fd8SGreg Roach                <td class="ut" dir="auto">
5984586c02SGreg Roach                    <?= e($task->value()) ?>
60dd6b2bfcSGreg Roach                </td>
61dd6b2bfcSGreg Roach            </tr>
62dd6b2bfcSGreg Roach        <?php endforeach ?>
63dd6b2bfcSGreg Roach    </tbody>
64dd6b2bfcSGreg Roach</table>
65