summaryrefslogtreecommitdiff
path: root/resources/views/place-hierarchy.phtml
blob: 15489351b59a2cbec7868b6a005f8d44e5c403ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php use Fisharebest\Webtrees\I18N; ?>

<div class="<?= $col_class ?> list_table">
    <div class="row">
        <span class="col list_label mr-1">
            <i class="icon-place"></i>
            <?= I18N::translate('Place hierarchy') ?>
        </span>
    </div>
    <div class="row">
        <?php foreach ($columns as $column) : ?>
            <ul class="col list_value_wrap mr-1">
                <?php foreach ($column as $item) : ?>
                    <li>
                        <a href="<?= $item->getURL() ?>"><?= $item->getPlaceName() ?></a>
                    </li>
                <?php endforeach ?>
            </ul>
        <?php endforeach ?>
    </div>
</div>