blob: 9e07225722f79a8f0e827a79d4e0bda577430b76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php
declare(strict_types=1);
use Fisharebest\Webtrees\I18N;
use Fisharebest\Webtrees\Module\ModuleReportInterface;
use Illuminate\Support\Collection;
/**
* @var Collection<int,ModuleReportInterface> $reports
* @var string $title
*/
?>
<h2 class="wt-page-title">
<?= $title ?>
</h2>
<form method="post" class="wt-page-options wt-page-options-report-select">
<div class="row">
<label class="col-sm-3 col-form-label wt-page-options-label" for="report">
<?= I18N::translate('Report') ?>
</label>
<div class="col-sm-9 wt-page-options-value">
<select class="form-select" id="report" name="report">
<?php foreach ($reports as $report) : ?>
<option value="<?= e($report->name()) ?>">
<?= e($report->title()) ?>
</option>
<?php endforeach ?>
</select>
</div>
</div>
<div class="row">
<div class="col-sm-3 col-form-label wt-page-options-label"></div>
<div class="col-sm-9 wt-page-options-value">
<button type="submit" class="btn btn-primary">
<?= I18N::translate('continue') ?>
</button>
</div>
</div>
<?= csrf_field() ?>
</form>
|