blob: 48f34db678d9a0deff40ce6f8f51a6be3527c380 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<form class="default" method="post"
action="<?= URLHelper::getLink(
'dispatch.php/resources/room_request/rerequest_booking/' . $booking->id
) ?>"
data-dialog="reload-on-close">
<?= CSRFProtection::tokenTag() ?>
<?= MessageBox::warning(
_('Soll die folgende Buchung wirklich gelöscht werden?')
) ?>
<?= $this->render_partial(
'resources/booking/index',
[
'booking' => $booking,
'hide_buttons' => true
]
) ?>
<div data-dialog-button>
<?= \Studip\Button::create(
_('Löschen und Anfrage erstellen'),
'delete_confirm'
) ?>
</div>
</form>
|