summaryrefslogtreecommitdiff
path: root/modules/user/views/admin_users_group.html.php
blob: 1d6c127d24c40b77489489e363d01a736bb8f554 (plain)
1
2
3
4
5
6
7
8
9
10
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>