xref: /webtrees/resources/views/modules/clippings/show.phtml (revision 08362db417156410ee02c6391bd9eb83a2df65fc)
13cfcc809SGreg Roach<?php
23cfcc809SGreg Roach
371378461SGreg Roachuse Fisharebest\Webtrees\I18N; ?>
4dd6b2bfcSGreg Roach
5dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
6dd6b2bfcSGreg Roach
7dd6b2bfcSGreg Roach<p>
8dd6b2bfcSGreg Roach    <?= I18N::translate('The clippings cart allows you to take extracts from this family tree and download them as a GEDCOM file.') ?>
9dd6b2bfcSGreg Roach</p>
10dd6b2bfcSGreg Roach
11dd6b2bfcSGreg Roach<?php if (empty($records)) : ?>
12dd6b2bfcSGreg Roach<p>
13dd6b2bfcSGreg Roach    <?= I18N::translate('Your clippings cart is empty.') ?>
14dd6b2bfcSGreg Roach</p>
15dd6b2bfcSGreg Roach<?php else : ?>
16dd6b2bfcSGreg Roach    <table class="table wt-facts-table">
17dd6b2bfcSGreg Roach        <thead>
18dd6b2bfcSGreg Roach            <tr>
19dd6b2bfcSGreg Roach                <th><?= I18N::translate('Record') ?></th>
20dd6b2bfcSGreg Roach                <th><?= I18N::translate('Remove') ?></th>
21dd6b2bfcSGreg Roach            </tr>
22dd6b2bfcSGreg Roach        </thead>
23dd6b2bfcSGreg Roach        <tbody>
24dd6b2bfcSGreg Roach            <?php foreach ($records as $record) : ?>
25dd6b2bfcSGreg Roach                <tr>
26dd6b2bfcSGreg Roach                    <td>
27*08362db4SGreg Roach                        <?= view('icons/record', ['record' => $record]) ?>
28dd6b2bfcSGreg Roach
29dd6b2bfcSGreg Roach                        <a href="<?= e($record->url()) ?>">
3039ca88baSGreg Roach                            <?= $record->fullName() ?>
31dd6b2bfcSGreg Roach                        </a>
32dd6b2bfcSGreg Roach                    </td>
33dd6b2bfcSGreg Roach                    <td>
34d72b284aSGreg Roach                        <form method="post" action="<?= e(route('module', ['module' => 'clippings', 'action' => 'Remove', 'tree' => $tree->name(), 'xref' => $record->xref()])) ?>">
35dd6b2bfcSGreg Roach                            <?= csrf_field() ?>
36dd6b2bfcSGreg Roach                            <button type="submit" class="btn btn-link" title="<?= I18N::translate('Remove') ?>">
37*08362db4SGreg Roach                                <?= view('icons/delete') ?>
38dd6b2bfcSGreg Roach                            </button>
39dd6b2bfcSGreg Roach                        </form>
40dd6b2bfcSGreg Roach                    </td>
41dd6b2bfcSGreg Roach                </tr>
42dd6b2bfcSGreg Roach            <?php endforeach ?>
43dd6b2bfcSGreg Roach        </tbody>
44dd6b2bfcSGreg Roach    </table>
45dd6b2bfcSGreg Roach<?php endif ?>
46