Files
gallery3/themes/default_admin/views/list_users.html.php
T

13 lines
310 B
PHP
Raw Normal View History

<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>