diff options
Diffstat (limited to 'app/Template/comments/create.php')
-rw-r--r-- | app/Template/comments/create.php | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/app/Template/comments/create.php b/app/Template/comments/create.php deleted file mode 100644 index 06173575..00000000 --- a/app/Template/comments/create.php +++ /dev/null @@ -1,11 +0,0 @@ -<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)) ?> - - <div class="form-actions"> - <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> - </div> -</form> |