blob: 98554881ea9217c791c69113729f46b2cc4b50c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
<?php
use Fisharebest\Webtrees\I18N;
?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form method="post" class="wt-page-options wt-page-options-lifespans-chart d-print-none">
<?= csrf_field() ?>
<?php foreach ($xrefs as $xref) : ?>
<input name="xrefs[]" type="hidden" value="<?= e($xref) ?>">
<?php endforeach ?>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="addxref">
<?= I18N::translate('Add individuals') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<?= view('components/select-individual', ['name' => 'addxref', 'tree' => $tree]) ?>
<?= view('components/checkbox', ['label' => /* I18N: Label for a configuration option */ I18N::translate('Include the individual’s immediate family'), 'name' => 'addfam']) ?>
</div>
</div>
<div class="row form-group">
<div class="col-sm-12 col-form-label wt-page-options-label">
<?= I18N::translate('Select individuals by place or date') ?>
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="placename">
<?= I18N::translate('Place') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="placename" name="placename" type="text" data-autocomplete-url="<?= e(route('autocomplete-place', ['query' => 'QUERY'])) ?>">
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="start">
<?= I18N::translate('Start year') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="start" name="start" type="text">
</div>
</div>
<div class="row form-group">
<label class="col-sm-3 col-form-label wt-page-options-label" for="end">
<?= I18N::translate('End year') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<input class="form-control" id="end" name="end" type="text">
</div>
</div>
<div class="row form-group">
<div class="col-form-label col-sm-3 wt-page-options-label"></div>
<div class="col-sm-9 wt-page-options-value">
<button type="submit" class="btn btn-primary" type="submit">
<?= /* I18N: A button label. */
I18N::translate('add') ?>
</button>
<a class="btn btn-secondary" href="<?= e($reset_url) ?>">
<?= /* I18N: A button label. */
I18N::translate('reset') ?>
</a>
</div>
</div>
</form>
<div class="wt-ajax-load wt-page-content wt-chart wt-timeline-chart" data-ajax-url="<?= e($ajax_url) ?>"></div>
|