blob: 05b0512001814facefe1e571f7032df4789b98ea (
plain)
1
2
3
4
5
6
7
8
|
<form method="post" action="<?= $this->url->href('CommentController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
<?= $this->form->csrf() ?>
<?= $this->form->hidden('task_id', $values) ?>
<?= $this->form->hidden('user_id', $values) ?>
<?= $this->form->textEditor('comment', $values, $errors, array('required' => true)) ?>
<?= $this->modal->submitButtons() ?>
</form>
|