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