Add drag and drop support to the admin_users interface. This is still

a work in progress but it actually works mostly.
This commit is contained in:
Bharat Mediratta
2009-01-28 09:50:15 +00:00
parent 713c8e8ab3
commit 1a62a26a36
4 changed files with 95 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
<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>