xref: /webtrees/resources/views/modules/todo/config.phtml (revision fcfa5390e0212e053854eb4fa4c263c9f6fb1e21)
1<?php use Fisharebest\Webtrees\I18N; ?>
2
3<p>
4    <?= 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.') ?>
5    <?= 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.') ?>
6    <?= I18N::translate('Research tasks are stored using the custom GEDCOM tag “_TODO”. Other genealogy applications may not recognize this tag.') ?>
7</p>
8
9<div class="form-group row">
10    <label class="col-sm-3 col-form-label" for="show_other">
11        <?= I18N::translate('Show research tasks that are assigned to other users') ?>
12    </label>
13    <div class="col-sm-9">
14        <?= view('components/radios-inline', ['name' => 'show_other', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_other]) ?>
15    </div>
16</div>
17
18
19<div class="form-group row">
20    <label class="col-sm-3 col-form-label" for="show_unassigned">
21        <?= I18N::translate('Show research tasks that are not assigned to any user') ?>
22    </label>
23    <div class="col-sm-9">
24        <?= view('components/radios-inline', ['name' => 'show_unassigned', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_unassigned]) ?>
25    </div>
26</div>
27
28<div class="form-group row">
29    <label class="col-sm-3 col-form-label" for="show_future">
30        <?= I18N::translate('Show research tasks that have a date in the future') ?>
31    </label>
32    <div class="col-sm-9">
33        <?= view('components/radios-inline', ['name' => 'show_future', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $show_future]) ?>
34    </div>
35</div>
36