blob: 9eb67d72f43d54184e2716fa64f0967fd6ec2ba9 (
plain)
1
2
3
4
5
6
7
8
|
<form method="post" class="default" action="<?= $controller->link_for('course/feedback/edit', $feedback->id) ?>">
<?= CSRFProtection::tokenTag() ?>
<?= $this->render_partial('course/feedback/_new_edit_feedback_form.php', ['feedback' => $feedback]) ?>
<footer data-dialog-button>
<?= Studip\Button::createAccept(_('Speichern')) ?>
<?= Studip\Button::createCancel() ?>
</footer>
</form>
|