aboutsummaryrefslogtreecommitdiff
path: root/app/views/siteinfo/markup/rootlist.php
blob: 2ab31e09f6c40b8ea7ab4001be6243900085930e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?
# Lifter010: TODO
?>
<? if (!empty($error)) : ?>
    <em><?= _("keine. Na sowas. Das kann ja eigentlich gar nicht sein...") ?></em>
<? else : ?>
    <ul>
        <? foreach($users as $user) : ?>
            <li>
                <a href="<?= URLHelper::getLink('dispatch.php/profile',
                                                 ['username' => $user['username']])
                          ?>"><?= htmlReady($user['fullname']) ?></a>, E-Mail:
                <?= formatLinks($user['Email']) ?>
            </li>
        <? endforeach ?>
    </ul>
<? endif ?>