xref: /webtrees/resources/views/modules/interactive-tree/page.phtml (revision 00efc03c94e245fd7e9a6c7367fdfc2f6bfcf1af)
117216d00SGreg Roach<?php
217216d00SGreg Roach
317216d00SGreg Roachuse Fisharebest\Webtrees\I18N;
417216d00SGreg Roachuse Fisharebest\Webtrees\View;
517216d00SGreg Roach
617216d00SGreg Roach?>
7575707d1SGreg Roach
8575707d1SGreg Roach<h2 class="wt-page-title">
9575707d1SGreg Roach    <?= $title ?>
10575707d1SGreg Roach</h2>
11575707d1SGreg Roach
120e519608SGreg Roach<form method="post" class="wt-page-options wt-page-options-compact-chart d-print-none">
130e519608SGreg Roach    <?= csrf_field() ?>
14575707d1SGreg Roach
15575707d1SGreg Roach    <div class="row form-group">
16575707d1SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
17575707d1SGreg Roach            <?= I18N::translate('Individual') ?>
18575707d1SGreg Roach        </label>
19575707d1SGreg Roach        <div class="col-sm-9 wt-page-options-value">
20*00efc03cSGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $individual->tree(), 'required' => true]) ?>
21575707d1SGreg Roach        </div>
22575707d1SGreg Roach    </div>
23575707d1SGreg Roach
24575707d1SGreg Roach    <div class="row form-group">
25575707d1SGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
26575707d1SGreg Roach        <div class="col-sm-9 wt-page-options-value">
27575707d1SGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
28575707d1SGreg Roach            I18N::translate('view') ?>">
29575707d1SGreg Roach        </div>
30575707d1SGreg Roach    </div>
31575707d1SGreg Roach</form>
32575707d1SGreg Roach
33575707d1SGreg Roach<div class="wt-page-content wt-chart wt-chart-interactive">
34575707d1SGreg Roach    <?= $html ?>
35575707d1SGreg Roach</div>
36575707d1SGreg Roach
37575707d1SGreg Roach<?php View::push('javascript') ?>
38575707d1SGreg Roach<script>
39575707d1SGreg Roach    <?= $js ?>
40575707d1SGreg Roach</script>
41575707d1SGreg Roach<?php View::endpush() ?>
42