mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
12 lines
295 B
PHP
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>
|