aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/statusgroups/sortAlphabetic.php
blob: a73ce275c2cd181f4ed6f30e49227cdcc592d76f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<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>