summaryrefslogtreecommitdiff
path: root/app/Template/comment/create.php
diff options
context:
space:
mode:
authorashbike <helloashbike@gmail.com>2015-02-16 23:53:09 +0530
committerashbike <helloashbike@gmail.com>2015-02-16 23:53:09 +0530
commit32cd7c15085023b8526e8fba22d5fbad7d6b8679 (patch)
tree0c9510fdd6b443ba6ea86389fc3b4bf219b70fd5 /app/Template/comment/create.php
parentb2c95a25e3b866f3987ac54c48e0a65792c8517d (diff)
This adds a quick comment creation link in the task menu on board.
Diffstat (limited to 'app/Template/comment/create.php')
-rw-r--r--app/Template/comment/create.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/Template/comment/create.php b/app/Template/comment/create.php
index 1bdbac49..2ef3ee59 100644
--- a/app/Template/comment/create.php
+++ b/app/Template/comment/create.php
@@ -2,7 +2,7 @@
<h2><?= t('Add a comment') ?></h2>
</div>
-<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>" autocomplete="off">
+<form method="post" action="<?= $this->u('comment', 'save', array('task_id' => $task['id'], 'project_id' => $task['project_id'], 'ajax' => $ajax)) ?>" autocomplete="off">
<?= $this->formCsrf() ?>
<?= $this->formHidden('task_id', $values) ?>
<?= $this->formHidden('user_id', $values) ?>
@@ -30,7 +30,11 @@
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
<?php if (! isset($skip_cancel)): ?>
<?= t('or') ?>
- <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ <?php if ($ajax): ?>
+ <?= $this->a(t('cancel'), 'board', 'show', array('project_id' => $task['project_id'])) ?>
+ <?php else: ?>
+ <?= $this->a(t('cancel'), 'task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>
+ <?php endif ?>
<?php endif ?>
</div>
</form>