aboutsummaryrefslogtreecommitdiff
path: root/app/views/admin/statusgroups/delete.php
blob: e4173b614c87a36e4c913882e78afc071433481a (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/delete/{$group->id}/{$user->user_id}") ?>" class="default">
    <?= CSRFProtection::tokenTag() ?>
    <fieldset>
        <legend>
            <?= _('Nutzer aus Gruppe austragen') ?>
        </legend>

        <section>
            <?= sprintf(_('%s wirklich aus %s austragen?'), htmlReady($user->getFullname()), htmlReady($group->name)) ?>
        </section>
    </fieldset>

    <footer data-dialog-button>
        <?= Studip\Button::createAccept(_('Entfernen'), 'confirm') ?>
        <?= Studip\LinkButton::createCancel(_('Abbrechen'), $controller->url_for('admin/statusgroups/index')) ?>
    </footer>
</form>