xref: /webtrees/resources/views/modules/clippings/add-options.phtml (revision dd6b2bfcc550270bb6d6778e11576148f71e4330)
1*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\Bootstrap4; ?>
2*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FontAwesome; ?>
3*dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
4*dd6b2bfcSGreg Roach
5*dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
6*dd6b2bfcSGreg Roach
7*dd6b2bfcSGreg Roach<form class="wt-page-options wt-page-options-clippings d-print-none" method="post">
8*dd6b2bfcSGreg Roach    <?= csrf_field() ?>
9*dd6b2bfcSGreg Roach
10*dd6b2bfcSGreg Roach    <div class="row form-group">
11*dd6b2bfcSGreg Roach        <div class="col-sm-3 col-form-label wt-page-options-label">
12*dd6b2bfcSGreg Roach            <?= I18N::translate('Add to the clippings cart') ?>
13*dd6b2bfcSGreg Roach        </div>
14*dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
15*dd6b2bfcSGreg Roach            <?= Bootstrap4::radioButtons('option', $options, $default, false, []) ?>
16*dd6b2bfcSGreg Roach        </div>
17*dd6b2bfcSGreg Roach    </div>
18*dd6b2bfcSGreg Roach
19*dd6b2bfcSGreg Roach    <div class="row form-group">
20*dd6b2bfcSGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
21*dd6b2bfcSGreg Roach        <div class="col-sm-9 wt-page-options-value">
22*dd6b2bfcSGreg Roach            <button type="submit" class="btn btn-primary">
23*dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('save') ?>
24*dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */ I18N::translate('continue') ?>
25*dd6b2bfcSGreg Roach            </button>
26*dd6b2bfcSGreg Roach
27*dd6b2bfcSGreg Roach            <a class="btn btn-secondary" href="<?= e($record->url()) ?>">
28*dd6b2bfcSGreg Roach                <?= FontAwesome::decorativeIcon('cancel') ?>
29*dd6b2bfcSGreg Roach                <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
30*dd6b2bfcSGreg Roach            </a>
31*dd6b2bfcSGreg Roach        </div>
32*dd6b2bfcSGreg Roach    </div>
33*dd6b2bfcSGreg Roach</form>
34