blob: a2ad652f569f4a21b0c22cfe785f0389cf0eae8b (
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><?= t("Group Administration") ?></h2>
<div class="gBlockContent">
<p><?= t("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="<?= t("Edit group") ?>"><?= t("edit") ?></a>
<? if (!$group->special): ?>
<a href="groups/delete_form/<?= $group->id ?>" class="gDialogLink"
title="<?= t("Do you really want to delete %group_name", array("group_name" => $group->name)) ?>">
<?= t("delete") ?></a>
<? endif ?>
</li>
<? endforeach ?>
<li><a href="groups/add_form" class="gDialogLink"
title="<?= t("Add group") ?>"><?= t("Add group") ?></a></li>
</ul>
</div>
|