summaryrefslogtreecommitdiff
path: root/modules/user/views/admin_groups.html.php
blob: 5b5066dcf47ae180256f53110fcfd1e3e3a5156c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php defined("SYSPATH") or die("No direct script access.") ?>
<div class="gBlock">
  <h2><?= _("Group Administration") ?></h2>
  <div class="gBlockContent">
    <p><?= _("These are the groups in your system") ?></p>
  </div>
  <ul>
    <? foreach ($groups as $i => $group): ?>
    <li>
      <?= $group->name ?>
      <a href="groups/edit_form/<?= $group->id ?>" class="gDialogLink"
        title="<?= _("Edit group") ?>"><?= _("edit") ?></a>
      <? if (!$group->special): ?>
        <a href="groups/delete_form/<?= $group->id ?>" class="gDialogLink"
          title="<?= sprintf(_("Do you really want to delete %s"), $group->name) ?>">
        <?= _("delete") ?></a>
      <? endif ?>
    </li>
    <? endforeach ?>
    <li><a href="groups/add_form" class="gDialogLink"
      title="<?= _("Add group") ?>"><?= _("Add group") ?></a></li>
  </ul>
</div>