1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?> 2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 3dd6b2bfcSGreg Roach 4*aa6f03bbSGreg Roach<?= view('components/breadcrumbs', ['links' => [route('admin-control-panel') => I18N::translate('Control panel'), route('admin-trees', ['ged' => $tree->name()]) => I18N::translate('Manage family trees '), $title]]) ?> 5dd6b2bfcSGreg Roach 6dd6b2bfcSGreg Roach<h1><?= $title ?></h1> 7dd6b2bfcSGreg Roach 8dd6b2bfcSGreg Roach<form class="form-inline"> 9dd6b2bfcSGreg Roach <input type="hidden" name="route" value="admin-trees-unconnected""> 10*aa6f03bbSGreg Roach <input type="hidden" name="ged" value="<?= e($tree->name()) ?>"> 11dd6b2bfcSGreg Roach <?= Bootstrap4::checkbox(I18N::translate('Include associates'), true, ['checked' => $associates, 'name' => 'associates']) ?> 12dd6b2bfcSGreg Roach <button type="submit"> 13dd6b2bfcSGreg Roach <?= I18N::translate('update') ?> 14dd6b2bfcSGreg Roach </button> 15dd6b2bfcSGreg Roach</form> 16dd6b2bfcSGreg Roach 17dd6b2bfcSGreg Roach<p><?= I18N::translate('These groups of individuals are not related to %s.', $root->getFullName()) ?></p> 18dd6b2bfcSGreg Roach 19dd6b2bfcSGreg Roach<?php foreach ($individual_groups as $group) : ?> 20dd6b2bfcSGreg Roach <h2><?= I18N::plural('%s individual', '%s individuals', count($group), I18N::number(count($group))) ?></h2> 21dd6b2bfcSGreg Roach <ul> 22dd6b2bfcSGreg Roach <?php foreach ($group as $individual) : ?> 23dd6b2bfcSGreg Roach <li> 24dd6b2bfcSGreg Roach <a href="<?= e($individual->url()) ?>"><?= $individual->getFullName() ?></a> 25dd6b2bfcSGreg Roach </li> 26dd6b2bfcSGreg Roach <?php endforeach ?> 27dd6b2bfcSGreg Roach </ul> 28dd6b2bfcSGreg Roach<?php endforeach ?> 29