Files
gallery3/themes/admin_default/views/users.html.php
2008-12-15 01:55:07 +00:00

14 lines
371 B
PHP

<? 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><?= $user->name ?></td></tr>
<? endforeach ?>
</table>
</div>
</div>