summaryrefslogtreecommitdiff
path: root/app/Template/task_sidebar.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-12-03 21:59:48 -0500
commit9fb2e711899ae328a7a09295468793ffbc16c27c (patch)
tree1efba503386d939c61767f8fbbf006dcfdcd6a34 /app/Template/task_sidebar.php
parent8a02ceb40e88c27777a95251083bc21629d62bb0 (diff)
Move tasks templates to a subfolder
Diffstat (limited to 'app/Template/task_sidebar.php')
-rw-r--r--app/Template/task_sidebar.php24
1 files changed, 0 insertions, 24 deletions
diff --git a/app/Template/task_sidebar.php b/app/Template/task_sidebar.php
deleted file mode 100644
index ff47e988..00000000
--- a/app/Template/task_sidebar.php
+++ /dev/null
@@ -1,24 +0,0 @@
-<div class="sidebar">
- <h2><?= t('Actions') ?></h2>
- <ul>
- <li><a href="?controller=task&amp;action=show&amp;task_id=<?= $task['id'] ?>"><?= t('Summary') ?></a></li>
- <li><a href="?controller=task&amp;action=edit&amp;task_id=<?= $task['id'] ?>"><?= t('Edit the task') ?></a></li>
- <li><a href="?controller=task&amp;action=description&amp;task_id=<?= $task['id'] ?>"><?= t('Edit the description') ?></a></li>
- <li><a href="?controller=subtask&amp;action=create&amp;task_id=<?= $task['id'] ?>"><?= t('Add a sub-task') ?></a></li>
- <li><a href="?controller=comment&amp;action=create&amp;task_id=<?= $task['id'] ?>"><?= t('Add a comment') ?></a></li>
- <li><a href="?controller=file&amp;action=create&amp;task_id=<?= $task['id'] ?>"><?= t('Attach a document') ?></a></li>
- <li><a href="?controller=task&amp;action=duplicate&amp;project_id=<?= $task['project_id'] ?>&amp;task_id=<?= $task['id'] ?>"><?= t('Duplicate') ?></a></li>
- <li><a href="?controller=task&amp;action=copy&amp;project_id=<?= $task['project_id'] ?>&amp;task_id=<?= $task['id'] ?>"><?= t('Duplicate to another project') ?></a></li>
- <li><a href="?controller=task&amp;action=move&amp;project_id=<?= $task['project_id'] ?>&amp;task_id=<?= $task['id'] ?>"><?= t('Move to another project') ?></a></li>
- <li>
- <?php if ($task['is_active'] == 1): ?>
- <a href="?controller=task&amp;action=close&amp;task_id=<?= $task['id'] ?>"><?= t('Close this task') ?></a>
- <?php else: ?>
- <a href="?controller=task&amp;action=open&amp;task_id=<?= $task['id'] ?>"><?= t('Open this task') ?></a>
- <?php endif ?>
- </li>
- <?php if (! $hide_remove_menu): ?>
- <li><a href="?controller=task&amp;action=remove&amp;task_id=<?= $task['id'] ?>"><?= t('Remove') ?></a></li>
- <?php endif ?>
- </ul>
-</div> \ No newline at end of file