blob: 742c16c86fa6ec65a08a9feaeba4664868094c09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<form method="post" action="<?= $controller->url_for('course/timesrooms/saveStack/' . $cycle_id, $linkAttributes) ?>"
class="default" data-dialog="size=big">
<input type="hidden" name="method" value="preparecancel">
<?= CSRFProtection::tokenTag()?>
<?= $this->render_partial('course/timesrooms/_cancel_form.php') ?>
<footer data-dialog-button>
<?= Studip\Button::createAccept(_('Übernehmen'), 'cancel') ?>
<? if (Request::int('fromDialog')): ?>
<?= Studip\LinkButton::create(_('Zurück zur Übersicht'),
$controller->url_for('course/timesrooms/index'),
['data-dialog' => 'size=big']) ?>
<? endif ?>
</footer>
</form>
|