1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?> 2*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?> 3*dd6b2bfcSGreg Roach 4*dd6b2bfcSGreg Roach<div class="form-group row"> 5*dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="num"> 6*dd6b2bfcSGreg Roach <?= /* I18N: ... to show in a list */ I18N::translate('Number of pages') ?> 7*dd6b2bfcSGreg Roach </label> 8*dd6b2bfcSGreg Roach <div class="col-sm-9"> 9*dd6b2bfcSGreg Roach <input class="form-control" id="num" name="num" type="text" value="<?= e($num) ?>"> 10*dd6b2bfcSGreg Roach </div> 11*dd6b2bfcSGreg Roach</div> 12*dd6b2bfcSGreg Roach 13*dd6b2bfcSGreg Roach<div class="form-group row"> 14*dd6b2bfcSGreg Roach <label class="col-sm-3 col-form-label" for="count_placement"> 15*dd6b2bfcSGreg Roach <?= /* I18N: Label for a configuration option */ I18N::translate('Show counts before or after name') ?> 16*dd6b2bfcSGreg Roach </label> 17*dd6b2bfcSGreg Roach <div class="col-sm-9"> 18*dd6b2bfcSGreg Roach <?= Bootstrap4::select($options, $count_placement, ['id' => 'count_placement', 'name' => 'count_placement']) ?> 19*dd6b2bfcSGreg Roach </div> 20*dd6b2bfcSGreg Roach</div> 21