blob: b5375fd0be2fe0cfee591c9d626eb6d00c5c814d (
plain)
1
2
3
4
5
6
7
8
9
|
<form action="<?= $controller->url_for('course/timesrooms/saveComment/' . $termin->id) ?>"
method="post" class="default" <?= Request::int('fromDialog') ? 'data-dialog="size=big"' : '' ?>>
<?= CSRFProtection::tokenTag() ?>
<?= $this->render_partial('course/timesrooms/_cancel_form.php', compact('termin')) ?>
<footer data-dialog-button>
<?= Studip\Button::createAccept(_('Übernehmen'), 'editDeletedSingleDate') ?>
<?= Studip\LinkButton::createCancel(_('Abbrechen'), '?#' . $termin->id) ?>
</footer>
</form>
|