xref: /webtrees/resources/views/modules/charts/config.phtml (revision c9e11c2a4bb055d724ccdbad6b9c595dd26c8975)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<div class="form-group row">
4dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="type">
5dd6b2bfcSGreg Roach        <?= I18N::translate('Chart type') ?>
6dd6b2bfcSGreg Roach    </label>
7dd6b2bfcSGreg Roach    <div class="col-sm-9">
8*c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'type', 'selected' => $type, 'options' => $charts]) ?>
9dd6b2bfcSGreg Roach    </div>
10dd6b2bfcSGreg Roach</div>
11dd6b2bfcSGreg Roach
12dd6b2bfcSGreg Roach<div class="form-group row">
13dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="pid">
14dd6b2bfcSGreg Roach        <label for="pid">
15dd6b2bfcSGreg Roach            <?= I18N::translate('Individual') ?>
16dd6b2bfcSGreg Roach        </label>
17dd6b2bfcSGreg Roach    </label>
18dd6b2bfcSGreg Roach    <div class="col-sm-9">
19b6c326d8SGreg Roach        <?= view('components/select-individual', ['name' => 'pid', 'individual' => $individual, 'tree' => $tree]) ?>
20dd6b2bfcSGreg Roach    </div>
21dd6b2bfcSGreg Roach</div>
22