diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-03-17 23:12:16 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-03-17 23:12:16 -0400 |
commit | f1e4fb92b361b409d2da8d84440653ac469b7d4f (patch) | |
tree | 686122e12ebb31ee639069745bfe9a4de44d093c /app/Template/subtask | |
parent | 24c224ddc224f68521f3143d66754742311d2a83 (diff) |
Put back task actions on the sidebar
Diffstat (limited to 'app/Template/subtask')
-rw-r--r-- | app/Template/subtask/show.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Template/subtask/show.php b/app/Template/subtask/show.php index 2eda357b..0e94a305 100644 --- a/app/Template/subtask/show.php +++ b/app/Template/subtask/show.php @@ -6,6 +6,12 @@ <div class="page-header"> <h2><?= t('Sub-Tasks') ?></h2> + <ul> + <li> + <i class="fa fa-plus fa-fw"></i> + <?= $this->url->link(t('Add a sub-task'), 'subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> + </li> + </ul> </div> <div id="subtasks"> |