Files
gallery3/modules/user/views/admin_users.html.php
Bharat Mediratta 6564007a9d Implement admin user editing. It's still very rough. Trying to
figure out how to share forms between user and admin editing.

Incremental improvement
2008-12-19 22:16:10 +00:00

20 lines
496 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>
<a href="<?= url::site("admin/users/edit/$user->id") ?>">
<?= $user->name ?>
</a>
</td>
</tr>
<? endforeach ?>
</table>
</div>
</div>