summaryrefslogtreecommitdiff
path: root/resources/views/place-hierarchy.phtml
blob: d31579517f6c1a02f42c6dab654e4f394d3f4c9b (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="<?= e($item->url()) ?>"><?= $item->getPlaceName() ?></a>
                    </li>
                <?php endforeach ?>
            </ul>
        <?php endforeach ?>
    </div>
</div>