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="filter"> 5dd6b2bfcSGreg Roach <?= I18N::translate('Show only events of living individuals') ?> 6dd6b2bfcSGreg Roach </label> 7dd6b2bfcSGreg Roach <div class="col-sm-9"> 8*b6c326d8SGreg Roach <?= view('components/radios-inline', ['name' => 'filter', 'options' => [I18N::translate('no'), I18N::translate('yes')], 'selected' => (int) $filter]) ?> 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="events"> 14dd6b2bfcSGreg Roach <?= I18N::translate('Events') ?> 15dd6b2bfcSGreg Roach </label> 16dd6b2bfcSGreg Roach <div class="col-sm-9"> 17*b6c326d8SGreg Roach <?= view('components/select', ['name' => 'events[]', 'id' => 'events', 'selected' => $event_array, 'values' => $all_events, 'class' => 'select2']) ?> 18dd6b2bfcSGreg Roach </div> 19dd6b2bfcSGreg Roach</div> 20dd6b2bfcSGreg Roach 21dd6b2bfcSGreg Roach<div class="form-group row"> 22dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="infoStyle"> 23dd6b2bfcSGreg Roach <?= /* I18N: Label for a configuration option */ I18N::translate('Presentation style') ?> 24dd6b2bfcSGreg Roach </label> 25dd6b2bfcSGreg Roach <div class="col-sm-9"> 26*b6c326d8SGreg Roach <?= view('components/select', ['name' => 'infoStyle', 'selected' => $infoStyle, 'values' => $info_styles]) ?> 27dd6b2bfcSGreg Roach </div> 28dd6b2bfcSGreg Roach</div> 29dd6b2bfcSGreg Roach 30dd6b2bfcSGreg Roach<div class="form-group row"> 31dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="sortStyle"> 32dd6b2bfcSGreg Roach <?= /* I18N: Label for a configuration option */ I18N::translate('Sort order') ?> 33dd6b2bfcSGreg Roach </label> 34dd6b2bfcSGreg Roach <div class="col-sm-9"> 35*b6c326d8SGreg Roach <?= view('components/select', ['name' => 'sortStyle', 'selected' => $sortStyle, 'values' => $sort_styles]) ?> 36dd6b2bfcSGreg Roach </div> 37dd6b2bfcSGreg Roach</div> 38