diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-02-02 21:28:07 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-02-02 21:28:07 -0500 |
commit | 5eb4b570a12a590a98c66d253b0ba54c6062a997 (patch) | |
tree | 8878e26b1970a2096047cff0b7bf2fba5f962117 /app/Template/task/sidebar.php | |
parent | d6d9e61816a6d7000449f86f057dd1c97820cf4a (diff) |
Show subtask modification forms in inline popup
Diffstat (limited to 'app/Template/task/sidebar.php')
-rw-r--r-- | app/Template/task/sidebar.php | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/app/Template/task/sidebar.php b/app/Template/task/sidebar.php index b5a2c4b4..81cd3434 100644 --- a/app/Template/task/sidebar.php +++ b/app/Template/task/sidebar.php @@ -22,6 +22,18 @@ <?= $this->hook->render('template:task:sidebar:information') ?> </ul> + <h2><?= t('Sub-Tasks') ?></h2> + <ul> + <li <?= $this->app->checkMenuSelection('subtask', 'show') ?>> + <?= $this->url->link(t('View all sub-tasks'), 'subtask', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> + </li> + <?php if ($this->user->hasProjectAccess('subtask', 'create', $task['project_id'])): ?> + <li <?= $this->app->checkMenuSelection('subtask', 'create') ?>> + <?= $this->url->link(t('Add a sub-task'), 'subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id']), false, 'popover') ?> + </li> + <?php endif ?> + </ul> + <h2><?= t('Links') ?></h2> <ul> <li <?= $this->app->checkMenuSelection('tasklink', 'show') ?>> @@ -52,9 +64,6 @@ <li <?= $this->app->checkMenuSelection('taskmodification', 'recurrence') ?>> <?= $this->url->link(t('Edit recurrence'), 'taskmodification', 'recurrence', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> </li> - <li <?= $this->app->checkMenuSelection('subtask', 'create') ?>> - <?= $this->url->link(t('Add a sub-task'), 'subtask', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> - </li> <li <?= $this->app->checkMenuSelection('comment', 'create') ?>> <?= $this->url->link(t('Add a comment'), 'comment', 'create', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?> </li> |