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