xref: /webtrees/resources/views/edit/reorder-media.phtml (revision dc124885db241fd8521088b8689a0a0d42b43764)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\FontAwesome; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
3dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
4dd6b2bfcSGreg Roach
5dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
6dd6b2bfcSGreg Roach
7dd6b2bfcSGreg Roach<form class="wt-page-content" method="post">
8dd6b2bfcSGreg Roach    <?= csrf_field() ?>
9dd6b2bfcSGreg Roach    <div class="wt-sortable-list">
10dd6b2bfcSGreg Roach        <?php foreach ($individual->getFacts('OBJE') as $fact) : ?>
11dd6b2bfcSGreg Roach            <div class="card mb-2 wt-sortable-item">
12dd6b2bfcSGreg Roach                <input type="hidden" name="order[]" value="<?= $fact->getFactId() ?>">
13dd6b2bfcSGreg Roach                <h3 class="card-header">
14dd6b2bfcSGreg Roach                    <?= FontAwesome::semanticIcon('drag-handle', '') ?>
15*dc124885SGreg Roach                    <?= $fact->target()->getFullName() ?>
16dd6b2bfcSGreg Roach                </h3>
17dd6b2bfcSGreg Roach                <div class="card-body">
18*dc124885SGreg Roach                    <?= $fact->target()->displayImage(100, 100, "contain") ?>
19dd6b2bfcSGreg Roach                </div>
20dd6b2bfcSGreg Roach            </div>
21dd6b2bfcSGreg Roach        <?php endforeach ?>
22dd6b2bfcSGreg Roach    </div>
23dd6b2bfcSGreg Roach
24dd6b2bfcSGreg Roach    <p>
25dd6b2bfcSGreg Roach        <button class="btn btn-primary" type="submit">
26dd6b2bfcSGreg Roach            <?= FontAwesome::decorativeIcon('save') ?>
27dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('save') ?>
28dd6b2bfcSGreg Roach        </button>
29dd6b2bfcSGreg Roach
30dd6b2bfcSGreg Roach        <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
31dd6b2bfcSGreg Roach            <?= FontAwesome::decorativeIcon('cancel') ?>
32dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
33dd6b2bfcSGreg Roach        </a>
34dd6b2bfcSGreg Roach    </p>
35dd6b2bfcSGreg Roach</form>
36dd6b2bfcSGreg Roach
37dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
38dd6b2bfcSGreg Roach<script>
39dd6b2bfcSGreg Roach  new Sortable(document.querySelector(".wt-sortable-list"), {});
40dd6b2bfcSGreg Roach</script>
41dd6b2bfcSGreg Roach<?php View::endpush() ?>
42