xref: /webtrees/resources/views/modules/charts/config.phtml (revision 575707d10f8c6929c3e1baa59b4fc51d1be11ae1)
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">
8c9e11c2aSGreg 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">
13*575707d1SGreg Roach    <label class="col-sm-3 col-form-label" for="xref">
14*575707d1SGreg Roach        <label for="xref">
15dd6b2bfcSGreg Roach            <?= I18N::translate('Individual') ?>
16dd6b2bfcSGreg Roach        </label>
17dd6b2bfcSGreg Roach    </label>
18dd6b2bfcSGreg Roach    <div class="col-sm-9">
19*575707d1SGreg Roach        <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?>
20dd6b2bfcSGreg Roach    </div>
21dd6b2bfcSGreg Roach</div>
22