xref: /webtrees/resources/views/modules/ancestors-chart/page.phtml (revision 990350cffdd7cbd842d2c5f8ecbca59ed9f7376d)
1<?php
2
3use Fisharebest\Webtrees\I18N;
4
5?>
6
7<h2 class="wt-page-title">
8    <?= $title ?>
9</h2>
10
11<form method="post" class="wt-page-options wt-page-options-ancestors-chart d-print-none">
12    <?= csrf_field() ?>
13
14    <div class="row form-group">
15        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
16            <?= I18N::translate('Individual') ?>
17        </label>
18        <div class="col-sm-9 wt-page-options-value">
19            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?>
20        </div>
21    </div>
22
23    <div class="row form-group">
24        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
25            <?= I18N::translate('Generations') ?>
26        </label>
27        <div class="col-sm-9 wt-page-options-value">
28            <input class="form-control" id="generations" name="generations" type="number" min="<?= e($minimum_generations) ?>" max="<?= e($maximum_generations) ?>" value="<?= e($generations) ?>" required>
29        </div>
30    </div>
31
32    <fieldset class="form-group">
33        <div class="row">
34            <legend class="col-form-label col-sm-3 wt-page-options-label">
35                <?= I18N::translate('Layout') ?>
36            </legend>
37            <div class="col-sm-9 wt-page-options-value">
38                <?= view('components/radios-inline', ['name' => 'style', 'options' => $styles, 'selected' => $style]) ?>
39            </div>
40        </div>
41    </fieldset>
42
43    <div class="row form-group">
44        <div class="col-form-label col-sm-3 wt-page-options-label"></div>
45        <div class="col-sm-9 wt-page-options-value">
46            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>">
47        </div>
48    </div>
49</form>
50
51<div class="wt-ajax-load wt-page-content wt-chart wt-chart-ancestors" data-ajax-url="<?= e($ajax_url) ?>"></div>
52