xref: /webtrees/resources/views/modules/pedigree-chart/page.phtml (revision c9e11c2a4bb055d724ccdbad6b9c595dd26c8975)
19b5537c3SGreg Roach<?php use Fisharebest\Webtrees\I18N; ?>
29b5537c3SGreg Roach
39b5537c3SGreg Roach<h2 class="wt-page-title">
49b5537c3SGreg Roach    <?= $title ?>
59b5537c3SGreg Roach</h2>
69b5537c3SGreg Roach
79b5537c3SGreg Roach<form class="wt-page-options wt-page-options-pedigree-chart d-print-none">
89b5537c3SGreg Roach    <input type="hidden" name="route" value="module">
99b5537c3SGreg Roach    <input type="hidden" name="module" value="<?= e($module_name) ?>">
109b5537c3SGreg Roach    <input type="hidden" name="action" value="Chart">
119b5537c3SGreg Roach    <input type="hidden" name="ged" value="<?= e($tree->name()) ?>">
129b5537c3SGreg Roach
139b5537c3SGreg Roach    <div class="row form-group">
149b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="xref">
159b5537c3SGreg Roach            <?= I18N::translate('Individual') ?>
169b5537c3SGreg Roach        </label>
179b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
18b6c326d8SGreg Roach            <?= view('components/select-individual', ['name' => 'xref', 'individual' => $individual, 'tree' => $tree]) ?>
199b5537c3SGreg Roach        </div>
209b5537c3SGreg Roach    </div>
219b5537c3SGreg Roach
229b5537c3SGreg Roach    <div class="row form-group">
239b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="generations">
249b5537c3SGreg Roach            <?= I18N::translate('Generations') ?>
259b5537c3SGreg Roach        </label>
269b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
27*c9e11c2aSGreg Roach            <?= view('components/select', ['name' => 'generations', 'selected' => $generations, 'options' => $generation_options]) ?>
289b5537c3SGreg Roach        </div>
299b5537c3SGreg Roach    </div>
309b5537c3SGreg Roach
319b5537c3SGreg Roach    <div class="row form-group">
329b5537c3SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="orientation">
339b5537c3SGreg Roach            <?= I18N::translate('Layout') ?>
349b5537c3SGreg Roach        </label>
359b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
36b6c326d8SGreg Roach            <?= view('components/radios-inline', ['name' => 'orientation', 'options' => ['left' => view('icons/pedigree-left') . I18N::translate('left'), 'right' => view('icons/pedigree-right') . I18N::translate('right'), 'up' => view('icons/pedigree-up') . I18N::translate('up'), 'down' => view('icons/pedigree-down') . I18N::translate('down'), ], 'selected' => $orientation]) ?>
379b5537c3SGreg Roach        </div>
389b5537c3SGreg Roach    </div>
399b5537c3SGreg Roach
409b5537c3SGreg Roach    <div class="row form-group">
419b5537c3SGreg Roach        <div class="col-sm-3 wt-page-options-label"></div>
429b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
439b5537c3SGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */ I18N::translate('view') ?>">
449b5537c3SGreg Roach        </div>
459b5537c3SGreg Roach    </div>
469b5537c3SGreg Roach</form>
479b5537c3SGreg Roach
48242a7862SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-chart-pedigree" data-ajax-url="<?= e($ajax_url) ?>"></div>
49