xref: /webtrees/resources/views/modules/top10_pageviews/config.phtml (revision c50a90becd46c0bddaa148cffcf57980b8a6226a)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<div class="form-group row">
4dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="num">
5dd6b2bfcSGreg Roach        <?= /* I18N: ... to show in a list */ I18N::translate('Number of pages') ?>
6dd6b2bfcSGreg Roach    </label>
7dd6b2bfcSGreg Roach    <div class="col-sm-9">
8*c50a90beSGreg Roach        <input class="form-control" id="num" name="num" type="number" min="1" value="<?= e($num) ?>" required>
9dd6b2bfcSGreg Roach    </div>
10dd6b2bfcSGreg Roach</div>
11dd6b2bfcSGreg Roach
12dd6b2bfcSGreg Roach<div class="form-group row">
13dd6b2bfcSGreg Roach    <label class="col-sm-3 col-form-label" for="count_placement">
14dd6b2bfcSGreg Roach        <?= /* I18N: Label for a configuration option */ I18N::translate('Show counts before or after name') ?>
15dd6b2bfcSGreg Roach    </label>
16dd6b2bfcSGreg Roach    <div class="col-sm-9">
17c9e11c2aSGreg Roach        <?= view('components/select', ['name' => 'count_placement', 'selected' => $count_placement, 'options' => $options]) ?>
18dd6b2bfcSGreg Roach    </div>
19dd6b2bfcSGreg Roach</div>
20