171378461SGreg Roach<?php 2*3cfcc809SGreg Roach 371378461SGreg Roachuse Fisharebest\Webtrees\I18N; 471378461SGreg Roach?> 59b5537c3SGreg Roach 69b5537c3SGreg Roach<h2 class="wt-page-title"> 79b5537c3SGreg Roach <?= $title ?> 89b5537c3SGreg Roach</h2> 99b5537c3SGreg Roach 1071378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-descendants-chart d-print-none"> 1171378461SGreg Roach <?= csrf_field() ?> 129b5537c3SGreg Roach 139b5537c3SGreg Roach <div class="row form-group"> 149b5537c3SGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="xref"> 159b5537c3SGreg Roach <?= I18N::translate('Individual') ?> 169b5537c3SGreg Roach </label> 179b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 18b6c326d8SGreg Roach <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?> 199b5537c3SGreg Roach </div> 209b5537c3SGreg Roach </div> 219b5537c3SGreg Roach 229b5537c3SGreg Roach <div class="row form-group"> 239b5537c3SGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="generations"> 249b5537c3SGreg Roach <?= I18N::translate('Generations') ?> 259b5537c3SGreg Roach </label> 269b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 279b5537c3SGreg Roach <input class="form-control" id="generations" name="generations" type="number" min="<?= e($minimum_generations) ?>" max="<?= e($maximum_generations) ?>" value="<?= e($generations) ?>" required> 289b5537c3SGreg Roach </div> 299b5537c3SGreg Roach </div> 309b5537c3SGreg Roach 319b5537c3SGreg Roach <fieldset class="form-group"> 329b5537c3SGreg Roach <div class="row"> 339b5537c3SGreg Roach <legend class="col-form-label col-sm-3 wt-page-options-label"> 349b5537c3SGreg Roach <?= I18N::translate('Layout') ?> 359b5537c3SGreg Roach </legend> 369b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 3771378461SGreg Roach <?= view('components/radios-inline', ['name' => 'style', 'options' => $styles, 'selected' => $style]) ?> 389b5537c3SGreg Roach </div> 399b5537c3SGreg Roach </div> 409b5537c3SGreg Roach </fieldset> 419b5537c3SGreg Roach 429b5537c3SGreg Roach <div class="row form-group"> 439b5537c3SGreg Roach <div class="col-form-label col-sm-3 wt-page-options-label"></div> 449b5537c3SGreg Roach <div class="col-sm-9 wt-page-options-value"> 459b5537c3SGreg Roach <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>"> 469b5537c3SGreg Roach </div> 479b5537c3SGreg Roach </div> 489b5537c3SGreg Roach</form> 499b5537c3SGreg Roach 50242a7862SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-chart-descendants" data-ajax-url="<?= e($ajax_url) ?>"></div> 51