1<?php 2 3use Fisharebest\Webtrees\I18N; 4use Fisharebest\Webtrees\Individual; 5use Fisharebest\Webtrees\Tree; 6 7/** 8 * @var string $ajax_url 9 * @var string $title 10 * @var Individual $individual 11 * @var Tree $tree 12 */ 13 14?> 15 16<h2 class="wt-page-title"> 17 <?= $title ?> 18</h2> 19 20<form method="post" class="wt-page-options wt-page-options-compact-chart d-print-none"> 21 <?= csrf_field() ?> 22 23 <div class="row form-group"> 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 form-group 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</form> 39 40<div class="wt-ajax-load wt-page-content wt-chart wt-chart-compact" data-wt-ajax-url="<?= e($ajax_url) ?>"></div> 41