mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-06-08 04:29:23 -04:00
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:
11
modules/user/views/admin_users_group.html.php
Normal file
11
modules/user/views/admin_users_group.html.php
Normal 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>
|
||||
Reference in New Issue
Block a user