aboutsummaryrefslogtreecommitdiff
path: root/app/views/resources/location/delete.php
blob: 67a8a22f042afc7512e8c157ec373589e882431a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<? if ($show_form): ?>
    <?= MessageBox::warning(
        _('Soll der folgende Standort wirklich gelöscht werden?')
    ) ?>
    <form class="default" method="post" data-dialog="reload-on-close"
          action="<?= $controller->link_for('resources/location/delete/' . $location->id) ?>">
        <?= CSRFProtection::tokenTag() ?>
        <?= $this->render_partial('resources/location/index', ['location' => $location]) ?>
        <div data-dialog-button>
            <?= \Studip\Button::create(_('Löschen'), 'save') ?>
        </div>
    </form>
<? endif ?>