117216d00SGreg Roach<?php 217216d00SGreg Roach 317216d00SGreg Roachuse Fisharebest\Webtrees\I18N; 47c2c99faSGreg Roachuse Fisharebest\Webtrees\Individual; 517216d00SGreg Roachuse Fisharebest\Webtrees\View; 617216d00SGreg Roach 77c2c99faSGreg Roach/** 87c2c99faSGreg Roach * @var string $html 97c2c99faSGreg Roach * @var Individual $individual 107c2c99faSGreg Roach * @var string $js 117c2c99faSGreg Roach * @var string $title 127c2c99faSGreg Roach */ 137c2c99faSGreg Roach 1417216d00SGreg Roach?> 15575707d1SGreg Roach 16575707d1SGreg Roach<h2 class="wt-page-title"> 17575707d1SGreg Roach <?= $title ?> 18575707d1SGreg Roach</h2> 19575707d1SGreg Roach 200e519608SGreg Roach<form method="post" class="wt-page-options wt-page-options-compact-chart d-print-none"> 210e519608SGreg Roach <?= csrf_field() ?> 22575707d1SGreg Roach 23*9e3c2cf9SGreg Roach <div class="row"> 24575707d1SGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 25575707d1SGreg Roach <?= I18N::translate('Individual') ?> 26575707d1SGreg Roach </label> 27575707d1SGreg Roach <div class="col-sm-9 wt-page-options-value"> 2800efc03cSGreg Roach <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $individual->tree(), 'required' => true]) ?> 29575707d1SGreg Roach </div> 30575707d1SGreg Roach </div> 31575707d1SGreg Roach 32*9e3c2cf9SGreg Roach <div class="row mb-3"> 33575707d1SGreg Roach <div class="col-sm-3 wt-page-options-label"></div> 34575707d1SGreg Roach <div class="col-sm-9 wt-page-options-value"> 35575707d1SGreg Roach <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ 36575707d1SGreg Roach I18N::translate('view') ?>"> 37575707d1SGreg Roach </div> 38575707d1SGreg Roach </div> 39575707d1SGreg Roach</form> 40575707d1SGreg Roach 41575707d1SGreg Roach<div class="wt-page-content wt-chart wt-chart-interactive"> 42575707d1SGreg Roach <?= $html ?> 43575707d1SGreg Roach</div> 44575707d1SGreg Roach 45575707d1SGreg Roach<?php View::push('javascript') ?> 46575707d1SGreg Roach<script> 47575707d1SGreg Roach <?= $js ?> 48575707d1SGreg Roach</script> 49575707d1SGreg Roach<?php View::endpush() ?> 50