mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-06 04:59:07 -04:00
26 lines
935 B
PHP
26 lines
935 B
PHP
<?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 class="<?= ($i % 2 == 0) ? "gEvenRow" : "gOddRow" ?>">
|
|
<?= $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>
|
|
|
|
|