summaryrefslogtreecommitdiff
path: root/app/Template/comment_list/create.php
blob: 4c86bc061f94edb88aad245e217da8b57d107511 (plain)
1
2
3
4
5
6
7
8
<div class="page-header">
    <h2><?= t('Add a comment') ?></h2>
</div>
<form method="post" action="<?= $this->url->href('CommentListController', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
    <?= $this->form->csrf() ?>
    <?= $this->form->textEditor('comment', array('project_id' => $task['project_id']), array(), array('required' => true)) ?>
    <?= $this->modal->submitButtons() ?>
</form>