1<?php 2 3use Fisharebest\Webtrees\I18N; 4use Fisharebest\Webtrees\Individual; 5use Fisharebest\Webtrees\View; 6 7/** 8 * @var string $html 9 * @var Individual $individual 10 * @var string $js 11 * @var string $title 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 <div class="row"> 22 <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 23 <?= I18N::translate('Individual') ?> 24 </label> 25 <div class="col-sm-9 wt-page-options-value"> 26 <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $individual->tree(), 'required' => true]) ?> 27 </div> 28 </div> 29 30 <div class="row mb-3"> 31 <div class="col-sm-3 wt-page-options-label"></div> 32 <div class="col-sm-9 wt-page-options-value"> 33 <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ 34 I18N::translate('view') ?>"> 35 </div> 36 </div> 37 38 <?= csrf_field() ?> 39</form> 40 41<div class="wt-page-content wt-chart wt-chart-interactive"> 42 <?= $html ?> 43</div> 44 45<?php View::push('javascript') ?> 46<script> 47 <?= $js ?> 48</script> 49<?php View::endpush() ?> 50