1*d70512abSGreg Roach<?php 2*d70512abSGreg Roach 3*d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 4*d70512abSGreg Roach 5*d70512abSGreg Roach?> 6dd6b2bfcSGreg Roach 7dd6b2bfcSGreg Roach<div class="form-group row"> 8dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="type"> 9dd6b2bfcSGreg Roach <?= I18N::translate('Chart type') ?> 10dd6b2bfcSGreg Roach </label> 11dd6b2bfcSGreg Roach <div class="col-sm-9"> 12c9e11c2aSGreg Roach <?= view('components/select', ['name' => 'type', 'selected' => $type, 'options' => $charts]) ?> 13dd6b2bfcSGreg Roach </div> 14dd6b2bfcSGreg Roach</div> 15dd6b2bfcSGreg Roach 16dd6b2bfcSGreg Roach<div class="form-group row"> 17575707d1SGreg Roach <label class="col-sm-3 col-form-label" for="xref"> 18575707d1SGreg Roach <label for="xref"> 19dd6b2bfcSGreg Roach <?= I18N::translate('Individual') ?> 20dd6b2bfcSGreg Roach </label> 21dd6b2bfcSGreg Roach </label> 22dd6b2bfcSGreg Roach <div class="col-sm-9"> 23575707d1SGreg Roach <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?> 24dd6b2bfcSGreg Roach </div> 25dd6b2bfcSGreg Roach</div> 26