xref: /webtrees/resources/views/modules/todo/config.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2<?php use Fisharebest\Webtrees\Functions\FunctionsEdit; ?>
3<?php use Fisharebest\Webtrees\I18N; ?>
4
5<p>
6    <?= I18N::translate('Research tasks are special events, added to individuals in your family tree, which identify the need for further research. You can use them as a reminder to check facts against more reliable sources, to obtain documents or photographs, to resolve conflicting information, etc.') ?>
7    <?= I18N::translate('To create new research tasks, you must first add “research task” to the list of facts and events in the family tree’s preferences.') ?>
8    <?= I18N::translate('Research tasks are stored using the custom GEDCOM tag “_TODO”. Other genealogy applications may not recognize this tag.') ?>
9</p>
10
11<div class="form-group row">
12    <label class="col-sm-3 col-form-label" for="show_other">
13        <?= I18N::translate('Show research tasks that are assigned to other users') ?>
14    </label>
15    <div class="col-sm-9">
16        <?= Bootstrap4::radioButtons('show_other', FunctionsEdit::optionsNoYes(), $show_other, true) ?>
17    </div>
18</div>
19
20
21<div class="form-group row">
22    <label class="col-sm-3 col-form-label" for="show_unassigned">
23        <?= I18N::translate('Show research tasks that are not assigned to any user') ?>
24    </label>
25    <div class="col-sm-9">
26        <?= Bootstrap4::radioButtons('show_unassigned', FunctionsEdit::optionsNoYes(), $show_unassigned, true) ?>
27    </div>
28</div>
29
30<div class="form-group row">
31    <label class="col-sm-3 col-form-label" for="show_future">
32        <?= I18N::translate('Show research tasks that have a date in the future') ?>
33    </label>
34    <div class="col-sm-9">
35        <?= Bootstrap4::radioButtons('show_future', FunctionsEdit::optionsNoYes(), $show_future, true) ?>
36    </div>
37</div>
38