xref: /webtrees/resources/views/modules/timeline-chart/page.phtml (revision 3cfcc809af53e831fa6cafac7b274a2cb407db6e)
171378461SGreg Roach<?php use Fisharebest\Webtrees\I18N;
271378461SGreg Roach
371378461SGreg Roach?>
49b5537c3SGreg Roach
59b5537c3SGreg Roach<h2 class="wt-page-title">
69b5537c3SGreg Roach    <?= $title ?>
79b5537c3SGreg Roach</h2>
89b5537c3SGreg Roach
971378461SGreg Roach<form method="post" class="wt-page-options wt-page-options-timeline-chart d-print-none">
1071378461SGreg Roach    <?= csrf_field() ?>
119b5537c3SGreg Roach
129b5537c3SGreg Roach    <div class="row form-group">
13*3cfcc809SGreg Roach        <label class="col-sm-3 col-form-label wt-page-options-label" for="add">
149b5537c3SGreg Roach            <?= I18N::translate('Individual') ?>
159b5537c3SGreg Roach        </label>
169b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
17*3cfcc809SGreg Roach            <?= view('components/select-individual', ['name' => 'add', 'id' => 'add', 'tree' => $tree]) ?>
189b5537c3SGreg Roach        </div>
199b5537c3SGreg Roach    </div>
209b5537c3SGreg Roach
219b5537c3SGreg Roach    <div class="row form-group">
229b5537c3SGreg Roach        <div class="col-form-label col-sm-3 wt-page-options-label"></div>
239b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
249b5537c3SGreg Roach            <input class="btn btn-primary" type="submit" value="<?= /* I18N: A button label. */
259b5537c3SGreg Roach            I18N::translate('add') ?>">
269b5537c3SGreg Roach            <a class="btn btn-secondary" href="<?= e($reset_url) ?>">
2771378461SGreg Roach                <?= /* I18N: A button label. */
2871378461SGreg Roach                I18N::translate('reset') ?>
299b5537c3SGreg Roach            </a>
309b5537c3SGreg Roach        </div>
319b5537c3SGreg Roach    </div>
329b5537c3SGreg Roach
339b5537c3SGreg Roach    <div class="row form-group">
349b5537c3SGreg Roach        <div class="col-form-label col-sm-3 wt-page-options-label"></div>
359b5537c3SGreg Roach        <div class="col-sm-9 wt-page-options-value">
36e39fd5c6SGreg Roach            <a href="<?= e($zoom_in_url) ?>" title="<?= I18N::translate('Zoom in') ?>">
37e39fd5c6SGreg Roach                <?= view('icons/zoom-in') ?>
38e39fd5c6SGreg Roach            </a>
39e39fd5c6SGreg Roach            <a href="<?= e($zoom_out_url) ?>" title="<?= I18N::translate('Zoom out') ?>">
40b659ab36SRico Sonntag                <?= view('icons/zoom-out') ?>
41e39fd5c6SGreg Roach            </a>
429b5537c3SGreg Roach        </div>
439b5537c3SGreg Roach    </div>
449b5537c3SGreg Roach</form>
459b5537c3SGreg Roach
469b5537c3SGreg Roach<div class="row my-4">
479b5537c3SGreg Roach    <?php foreach ($individuals as $n => $individual) : ?>
489b5537c3SGreg Roach        <div class="col-md-6 col-lg-4 col-xl-3 person<?= $n % 6 ?>">
49032918ffSGreg Roach            <?= view('icons/sex-' . $individual->sex()) ?>
509b5537c3SGreg Roach            <a href="<?= e($individual->url()) ?>">
5139ca88baSGreg Roach                <?= $individual->fullName() ?>
5239ca88baSGreg Roach                <?php if ($individual->alternateName() !== '') : ?>
539b5537c3SGreg Roach                    <br>
5439ca88baSGreg Roach                    <?= $individual->alternateName() ?>
559b5537c3SGreg Roach                <?php endif ?>
569b5537c3SGreg Roach            </a>
579b5537c3SGreg Roach            <a href="<?= e($remove_urls[$individual->xref()]) ?>">
589b5537c3SGreg Roach                <?= I18N::translate('Remove individual') ?>
599b5537c3SGreg Roach            </a>
609b5537c3SGreg Roach            <?php if ($individual->getBirthDate()->isOK()) : ?>
619b5537c3SGreg Roach                <br>
629b5537c3SGreg Roach                <label>
639b5537c3SGreg Roach                    <input type="checkbox" name="agebar<?= $n ?>" value="ON" onclick="$('#agebox<?= $n ?>').toggle();">
6471378461SGreg Roach                    <?= /* I18N: an age indicator, which can be dragged around the screen */
6571378461SGreg Roach                    I18N::translate('Show an age cursor') ?>
669b5537c3SGreg Roach                </label>
679b5537c3SGreg Roach            <?php endif ?>
689b5537c3SGreg Roach        </div>
699b5537c3SGreg Roach    <?php endforeach ?>
709b5537c3SGreg Roach</div>
719b5537c3SGreg Roach
729b5537c3SGreg Roach<div class="wt-ajax-load wt-page-content wt-chart wt-timeline-chart" data-ajax-url="<?= e($ajax_url) ?>"></div>
73