xref: /webtrees/resources/views/modals/link-media-to-individual.phtml (revision b6c326d8b8798b83b744c4d4a669df5aa9f3e0c2)
1dd6b2bfcSGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
2dd6b2bfcSGreg Roach
3dd6b2bfcSGreg Roach<form action="<?= e(route('link-media-to-record')) ?>" id="wt-modal-form" method="POST">
4dd6b2bfcSGreg Roach    <?= csrf_field() ?>
5aa6f03bbSGreg Roach    <input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
6c0935879SGreg Roach    <input type="hidden" name="xref" value="<?= e($media->xref()) ?>">
7dd6b2bfcSGreg Roach
8dd6b2bfcSGreg Roach    <?= view('modals/header', ['title' => I18N::translate('Link this media object to an individual')]) ?>
9dd6b2bfcSGreg Roach
10dd6b2bfcSGreg Roach    <div class="modal-body">
11dd6b2bfcSGreg Roach        <div class="form-group">
12dd6b2bfcSGreg Roach            <label class="col-form-label" for="link">
13dd6b2bfcSGreg Roach                <?= I18N::translate('Individual') ?>
14dd6b2bfcSGreg Roach            </label>
15*b6c326d8SGreg Roach            <?= view('components/select-individual', ['name' => 'link', 'tree' => $tree]) ?>
16dd6b2bfcSGreg Roach        </div>
17dd6b2bfcSGreg Roach    </div>
18dd6b2bfcSGreg Roach
19dd6b2bfcSGreg Roach    <?= view('modals/footer-save-cancel') ?>
20dd6b2bfcSGreg Roach</form>
21