This repository has been archived on 2024-07-27. You can view files and clone it, but cannot push or open issues or pull requests.
keksAccount/resources/views/admin/user_list.php

49 lines
1.6 KiB
PHP
Raw Permalink Normal View History

2019-04-25 12:19:16 +00:00
<?php include(__DIR__."/../layout/top.php"); ?>
<div class="row">
<div class="col-md-12">
<h3>Users</h3>
<table class="table">
<tr>
<th>#</th>
<th>Username</th>
<th>Status</th>
<th>Primary Mail</th>
<th>Flags</th>
<th>Actions</th>
</tr>
<?php
foreach($users as $user) {
?>
<tr>
<td><?php echo $user->id; ?></td>
<td><?php echo $user->username; ?></td>
<td><?php echo $user->status; ?></td>
<td><?php echo $user->getMail(); ?></td>
<td>
<?php
if($user->developer) {
echo '<i class="fas fa-laptop-code"></i>';
}
if($user->admin) {
echo '<i class="fas fa-user-shield"></i>';
}
?>
</td>
<td><a href="/gui/admin/users/<?php echo $user->id; ?>" class="btn btn-warning btn-sm">Edit</a> </td>
</tr>
<?php
}
?>
</table>
<br>
Flags:<br>
<i class="fas fa-user-shield"></i> = Admin<br>
<i class="fas fa-laptop-code"></i> = Developer
</div>
</div>
<?php include(__DIR__."/../layout/bottom.php"); ?>