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