diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 19:36:40 -0800 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-09-01 19:36:40 -0800 |
commit | e6d0658a0eedeb6a641c003d1c492af0f9a7502c (patch) | |
tree | 31004fe37246e39e438fb2dc7f1d07996634f1f3 /app/Templates/task_sidebar.php | |
parent | e4965546543be040da29dc341900fa9511a158be (diff) |
Add the possibility to duplicate a task to another project
Diffstat (limited to 'app/Templates/task_sidebar.php')
-rw-r--r-- | app/Templates/task_sidebar.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Templates/task_sidebar.php b/app/Templates/task_sidebar.php index ba9d7a86..43170aa6 100644 --- a/app/Templates/task_sidebar.php +++ b/app/Templates/task_sidebar.php @@ -10,6 +10,7 @@ <li><a href="?controller=file&action=create&task_id=<?= $task['id'] ?>"><?= t('Attach a document') ?></a></li> <li><a href="?controller=task&action=duplicate&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate') ?></a></li> <li><a href="?controller=task&action=move&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Move to another project') ?></a></li> + <li><a href="?controller=task&action=copy&project_id=<?= $task['project_id'] ?>&task_id=<?= $task['id'] ?>"><?= t('Duplicate to another project') ?></a></li> <li> <?php if ($task['is_active'] == 1): ?> <a href="?controller=task&action=confirmClose&task_id=<?= $task['id'] ?>"><?= t('Close this task') ?></a> |