Files
gallery3/modules/user/views/admin_users_group.html.php
Bharat Mediratta 1a62a26a36 Add drag and drop support to the admin_users interface. This is still
a work in progress but it actually works mostly.
2009-01-28 09:50:15 +00:00

12 lines
295 B
PHP

<strong><?= $group->name?></strong>
<ul>
<? foreach ($group->users as $i => $user): ?>
<li class="gUser">
<?= $user->name ?>
<? if (!$group->special): ?>
<a href="javascript:remove_user(<?= $user->id ?>, <?= $group->id ?>)">X</a>
<? endif ?>
</li>
<? endforeach ?>
</ul>