11cfe16bdSGreg Roach<?php 21cfe16bdSGreg Roach 31cfe16bdSGreg Roachuse Fisharebest\Webtrees\I18N; 4dc270d8cSGreg Roachuse Fisharebest\Webtrees\Module\ModuleReportInterface; 5dc270d8cSGreg Roachuse Illuminate\Support\Collection; 6dc270d8cSGreg Roach 7dc270d8cSGreg Roach/** 836779af1SGreg Roach * @var Collection<int,ModuleReportInterface> $reports 9dc270d8cSGreg Roach * @var string $title 10dc270d8cSGreg Roach */ 111cfe16bdSGreg Roach 121cfe16bdSGreg Roach?> 13dd6b2bfcSGreg Roach 14dd6b2bfcSGreg Roach<h2 class="wt-page-title"> 15dd6b2bfcSGreg Roach <?= $title ?> 16dd6b2bfcSGreg Roach</h2> 17dd6b2bfcSGreg Roach 181cfe16bdSGreg Roach<form method="post" class="wt-page-options wt-page-options-report-select"> 199e3c2cf9SGreg Roach <div class="row"> 20dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label wt-page-options-label" for="report"> 21dd6b2bfcSGreg Roach <?= I18N::translate('Report') ?> 22dd6b2bfcSGreg Roach </label> 23dd6b2bfcSGreg Roach <div class="col-sm-9 wt-page-options-value"> 244b9213b3SGreg Roach <select class="form-select" id="report" name="report"> 259cad7645SGreg Roach <?php foreach ($reports as $report) : ?> 269cad7645SGreg Roach <option value="<?= e($report->name()) ?>"> 279cad7645SGreg Roach <?= e($report->title()) ?> 28dd6b2bfcSGreg Roach </option> 29dd6b2bfcSGreg Roach <?php endforeach ?> 30dd6b2bfcSGreg Roach </select> 31dd6b2bfcSGreg Roach </div> 32dd6b2bfcSGreg Roach </div> 33dd6b2bfcSGreg Roach 349e3c2cf9SGreg Roach <div class="row"> 35dd6b2bfcSGreg Roach <div class="col-sm-3 col-form-label wt-page-options-label"></div> 36dd6b2bfcSGreg Roach <div class="col-sm-9 wt-page-options-value"> 37dd6b2bfcSGreg Roach <button type="submit" class="btn btn-primary"> 38dd6b2bfcSGreg Roach <?= I18N::translate('continue') ?> 39dd6b2bfcSGreg Roach </button> 40dd6b2bfcSGreg Roach </div> 41dd6b2bfcSGreg Roach </div> 42*81443e3cSGreg Roach 43*81443e3cSGreg Roach <?= csrf_field() ?> 44dd6b2bfcSGreg Roach</form> 45