diff options
author | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:39:47 -0300 |
---|---|---|
committer | Frédéric Guillot <contact@fredericguillot.com> | 2014-07-04 12:39:47 -0300 |
commit | 8c428d377f1570faf1198ae692a6f56bdb66170c (patch) | |
tree | 73f365f681a59328f11ce12086bf5685b3ab821a /app/Templates/task_edit_description.php | |
parent | ccd5e93c163a8bf35787506f70df4d136dd34b85 (diff) | |
parent | 6d65cfd88343aadc68e4963e66dcdc0688b4346c (diff) |
Merge pull request #163 from Typz/popover
Use popover to edit task and description directly from board.
Diffstat (limited to 'app/Templates/task_edit_description.php')
-rw-r--r-- | app/Templates/task_edit_description.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Templates/task_edit_description.php b/app/Templates/task_edit_description.php index 550dac73..ba0d3887 100644 --- a/app/Templates/task_edit_description.php +++ b/app/Templates/task_edit_description.php @@ -2,7 +2,7 @@ <h2><?= t('Edit the description') ?></h2> </div> -<form method="post" action="?controller=task&action=saveDescription&task_id=<?= $task['id'] ?>" autocomplete="off"> +<form method="post" action="?controller=task&action=saveDescription&task_id=<?= $task['id'] ?>&ajax=<?= $ajax ?>" autocomplete="off"> <?= Helper\form_csrf() ?> @@ -13,6 +13,11 @@ <div class="form-actions"> <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> <?= t('or') ?> +<?php if ($ajax): ?> + <a href="?controller=board&action=show&project_id=<?= $task['project_id'] ?>"><?= t('cancel') ?></a> +<?php else: ?> <a href="?controller=task&action=show&task_id=<?= $task['id'] ?>"><?= t('cancel') ?></a> +<?php endif ?> </div> </form> + |