blob: 04c3019b8b185aaf4904babd3345647f02c7c095 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/**
* @var Admin_StatusgroupsController $controller
* @var Statusgruppen $group
*/
?>
<form method="post" action="<?= $controller->url_for("admin/statusgroups/sortAlphabetic/{$group->id}") ?>" class="default">
<?= CSRFProtection::tokenTag() ?>
<fieldset>
<legend>
<?= _('Gruppe alphabetisch sortieren') ?>
</legend>
<section>
<?= sprintf(_('Gruppe %s wirklich alphabetisch sortieren? Die vorherige Sortierung kann nicht wiederhergestellt werden.'), htmlReady($group->name)) ?>
</section>
</fieldset>
<footer data-dialog-button>
<?= Studip\Button::createAccept(_('Sortieren'), 'confirm') ?>
<?= Studip\LinkButton::createCancel(_('Abbrechen'), $controller->url_for('admin/statusgroups')) ?>
</footer>
</form>
|