summaryrefslogtreecommitdiff
path: root/modules/user/views/admin_users_group.html.php
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-01-28 09:50:15 +0000
committerBharat Mediratta <bharat@menalto.com>2009-01-28 09:50:15 +0000
commit1a62a26a369fbb56c46e3fc9bae64084adbd8326 (patch)
treefd1033cd62c9c7110ab911a6593fe162af9c6f6b /modules/user/views/admin_users_group.html.php
parent713c8e8ab3884b261376f2e720720b747a63bb3f (diff)
Add drag and drop support to the admin_users interface. This is still
a work in progress but it actually works mostly.
Diffstat (limited to 'modules/user/views/admin_users_group.html.php')
-rw-r--r--modules/user/views/admin_users_group.html.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/user/views/admin_users_group.html.php b/modules/user/views/admin_users_group.html.php
new file mode 100644
index 00000000..1d6c127d
--- /dev/null
+++ b/modules/user/views/admin_users_group.html.php
@@ -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>