1<?php 2 3declare(strict_types=1); 4 5use Fisharebest\Webtrees\I18N; 6use Fisharebest\Webtrees\Individual; 7use Fisharebest\Webtrees\Tree; 8 9/** 10 * @var string $ajax_url 11 * @var string $title 12 * @var Individual $individual 13 * @var Tree $tree 14 */ 15 16?> 17 18<h2 class="wt-page-title"> 19 <?= $title ?> 20</h2> 21 22<form method="post" class="wt-page-options wt-page-options-compact-chart d-print-none"> 23 <div class="row"> 24 <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 25 <?= I18N::translate('Individual') ?> 26 </label> 27 <div class="col-sm-9 wt-page-options-value"> 28 <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree, 'required' => true]) ?> 29 </div> 30 </div> 31 32 <div class="row mb-3"> 33 <div class="col-sm-3 wt-page-options-label"></div> 34 <div class="col-sm-9 wt-page-options-value"> 35 <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>"> 36 </div> 37 </div> 38 39 <?= csrf_field() ?> 40</form> 41 42<div class="wt-ajax-load wt-page-content wt-chart wt-chart-compact" data-wt-ajax-url="<?= e($ajax_url) ?>"></div> 43