1d70512abSGreg Roach<?php 2d70512abSGreg Roach 37c2c99faSGreg Roachuse Fisharebest\Webtrees\GedcomRecord; 4d70512abSGreg Roachuse Fisharebest\Webtrees\I18N; 5d70512abSGreg Roach 67c2c99faSGreg Roach/** 77c2c99faSGreg Roach * @var array<string,string> $options 87c2c99faSGreg Roach * @var GedcomRecord $record 97c2c99faSGreg Roach * @var string $title 107c2c99faSGreg Roach */ 117c2c99faSGreg Roach 12d70512abSGreg Roach?> 13dd6b2bfcSGreg Roach 14dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2> 15dd6b2bfcSGreg Roach 16f7ab47b1SGreg Roach<form method="post" class="wt-page-options wt-page-options-clippings d-print-none"> 17dd6b2bfcSGreg Roach <?= csrf_field() ?> 18ac17e2b5SGreg Roach <input type="hidden" name="xref" value="<?= e($record->xref()) ?>"> 19dd6b2bfcSGreg Roach 20dd6b2bfcSGreg Roach <div class="row form-group"> 21dd6b2bfcSGreg Roach <div class="col-sm-3 col-form-label wt-page-options-label"> 22dd6b2bfcSGreg Roach <?= I18N::translate('Add to the clippings cart') ?> 23dd6b2bfcSGreg Roach </div> 24dd6b2bfcSGreg Roach <div class="col-sm-9 wt-page-options-value"> 25*d45701ccSGreg Roach <?= view('components/radios', ['name' => 'option', 'options' => $options, 'selected' => key($options)]) ?> 26dd6b2bfcSGreg Roach </div> 27dd6b2bfcSGreg Roach </div> 28dd6b2bfcSGreg Roach 29dd6b2bfcSGreg Roach <div class="row form-group"> 30dd6b2bfcSGreg Roach <div class="col-sm-3 wt-page-options-label"></div> 31dd6b2bfcSGreg Roach <div class="col-sm-9 wt-page-options-value"> 32dd6b2bfcSGreg Roach <button type="submit" class="btn btn-primary"> 33d993d560SGreg Roach <?= view('icons/save') ?> 34dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ I18N::translate('continue') ?> 35dd6b2bfcSGreg Roach </button> 36dd6b2bfcSGreg Roach 37dd6b2bfcSGreg Roach <a class="btn btn-secondary" href="<?= e($record->url()) ?>"> 38d993d560SGreg Roach <?= view('icons/cancel') ?> 39dd6b2bfcSGreg Roach <?= /* I18N: A button label. */ I18N::translate('cancel') ?> 40dd6b2bfcSGreg Roach </a> 41dd6b2bfcSGreg Roach </div> 42dd6b2bfcSGreg Roach </div> 43dd6b2bfcSGreg Roach</form> 44