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