xref: /webtrees/resources/views/modules/family-book-chart/page.phtml (revision 6f68916103931ce3f715eba5c6f55acf120c084e)
1<?php
2
3use Fisharebest\Webtrees\Functions\FunctionsEdit;
4use Fisharebest\Webtrees\I18N;
5
6?>
7
8<h2 class="wt-page-title">
9    <?= $title ?>
10</h2>
11
12<form method="post" class="wt-page-options wt-page-options-family-book-chart d-print-none">
13    <?= csrf_field() ?>
14
15    <div class="row form-group">
16        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
17            <?= I18N::translate('Individual') ?>
18        </label>
19        <div class="col-sm-9 wt-page-options-value">
20            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?>
21        </div>
22    </div>
23
24    <div class="row form-group">
25        <label class="col-sm-3 col-form-label wt-page-options-label" for="book_size">
26            <?= I18N::translate('Generations') ?>
27        </label>
28        <div class="col-sm-9 wt-page-options-value">
29            <?= view('components/select-number', ['name' => 'book_size', 'selected' => $book_size, 'options' => range(2, 5)]) ?>
30        </div>
31    </div>
32
33    <div class="row form-group">
34        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
35            <?= I18N::translate('Descendant generations') ?>
36        </label>
37        <div class="col-sm-9 wt-page-options-value">
38            <?= view('components/select-number', ['name' => 'generations', 'selected' => $generations, 'options' => range($minimum_generations, $maximum_generations)]) ?>
39        </div>
40    </div>
41
42    <fieldset class="form-group">
43        <div class="row">
44            <legend class="col-form-label col-sm-3 wt-page-options-label">
45                <?= I18N::translate('Spouses') ?>
46            </legend>
47            <div class="col-sm-9 wt-page-options-value">
48                <?= view('components/checkbox', ['label' => I18N::translate('Show spouses'), 'name' => 'spouses', 'checked' => $spouses]) ?>
49            </div>
50        </div>
51    </fieldset>
52
53    <div class="row form-group">
54        <div class="col-sm-3 wt-page-options-label"></div>
55        <div class="col-sm-9 wt-page-options-value">
56            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>">
57        </div>
58    </div>
59</form>
60
61<div class="wt-ajax-load wt-page-content wt-chart wt-chart-family-book" data-ajax-url="<?= e($ajax_url) ?>"></div>
62