xref: /webtrees/resources/views/edit/reorder-media.phtml (revision 75b444f74a3f1005e5f45f80589c0e892ad69b7b)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\View; ?>
3dd6b2bfcSGreg Roach
4dd6b2bfcSGreg Roach<h2 class="wt-page-title"><?= $title ?></h2>
5dd6b2bfcSGreg Roach
6dd6b2bfcSGreg Roach<form class="wt-page-content" method="post">
7dd6b2bfcSGreg Roach    <?= csrf_field() ?>
8dd6b2bfcSGreg Roach    <div class="wt-sortable-list">
98d0ebef0SGreg Roach        <?php foreach ($individual->facts(['OBJE']) as $fact) : ?>
10dd6b2bfcSGreg Roach            <div class="card mb-2 wt-sortable-item">
11905ab80aSGreg Roach                <input type="hidden" name="order[]" value="<?= $fact->id() ?>">
12*75b444f7SGreg Roach                <div class="card-header">
13*75b444f7SGreg Roach                    <span class="drag-handle">
146a83cfe8SGreg Roach                        <?= view('icons/drag-handle') ?>
15*75b444f7SGreg Roach                    </span>
1639ca88baSGreg Roach                    <?= $fact->target()->fullName() ?>
17*75b444f7SGreg Roach                </div>
18dd6b2bfcSGreg Roach                <div class="card-body">
19b2c011d7SGreg Roach                    <?= $fact->target()->displayImage(100, 100, 'contain') ?>
20dd6b2bfcSGreg Roach                </div>
21dd6b2bfcSGreg Roach            </div>
22dd6b2bfcSGreg Roach        <?php endforeach ?>
23dd6b2bfcSGreg Roach    </div>
24dd6b2bfcSGreg Roach
25dd6b2bfcSGreg Roach    <p>
26dd6b2bfcSGreg Roach        <button class="btn btn-primary" type="submit">
27d993d560SGreg Roach            <?= view('icons/save') ?>
28dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('save') ?>
29dd6b2bfcSGreg Roach        </button>
30dd6b2bfcSGreg Roach
31dd6b2bfcSGreg Roach        <a class="btn btn-secondary" href="<?= e($individual->url()) ?>">
32d993d560SGreg Roach            <?= view('icons/cancel') ?>
33dd6b2bfcSGreg Roach            <?= /* I18N: A button label. */ I18N::translate('cancel') ?>
34dd6b2bfcSGreg Roach        </a>
35dd6b2bfcSGreg Roach    </p>
36dd6b2bfcSGreg Roach</form>
37dd6b2bfcSGreg Roach
38dd6b2bfcSGreg Roach<?php View::push('javascript') ?>
39dd6b2bfcSGreg Roach<script>
40*75b444f7SGreg Roach  new Sortable(document.querySelector(".wt-sortable-list"), {
41*75b444f7SGreg Roach      handle: '.drag-handle'
42*75b444f7SGreg Roach  });
43dd6b2bfcSGreg Roach</script>
44dd6b2bfcSGreg Roach<?php View::endpush() ?>
45