<?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> </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' ?>