addressbook/templates/admin/users.html.php

33 lines
925 B
PHP
Raw Normal View History

2022-10-23 19:14:13 +02:00
<?php include dirname(path: __DIR__) . '/_header.html.php'; ?>
<h2>User list</h2>
<table>
<tr>
<th>Nick</th>
<th>First</th>
<th>Last</th>
<th>Is Admin</th>
<th>&nbsp;</th>
</tr>
<?php foreach ($users as $userLine): ?>
<tr>
<td><?= $userLine->getNick() ?></td>
<td><?= $userLine->getFirst() ?></td>
<td><?= $userLine->getLast() ?></td>
<td style="text-align: center;">
<?php if ($userLine->isAdmin()): ?>
☑️
<?php else: ?>
👎
<?php endif; ?>
</td>
<td>
<a href="/admin/users/<?= $userLine->getNick(); ?>">edit</a>
</td>
</tr>
<?php endforeach; ?>
</table>
<a href="/admin/users/add">Add User</a>
<?php include dirname(path: __DIR__) . '/_footer.html.php' ?>