blob: fc6c98bf294f9109fd5836a9410ec8adba369155 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<? defined("SYSPATH") or die("No direct script access."); ?>
<div class="gBlock">
<a href="" class="gClose">X</a>
<h2>User Administration</h2>
<div class="gBlockContent">
<p>These are the users in your system</p>
<table>
<? foreach ($users as $i => $user): ?>
<tr>
<td>
<a href="<?= url::site("admin/users/edit/$user->id") ?>">
<?= $user->name ?>
</a>
</td>
</tr>
<? endforeach ?>
</table>
</div>
</div>
|