diff options
author | BlueTeck <tili2@gmx.de> | 2015-03-29 12:20:03 +0200 |
---|---|---|
committer | BlueTeck <tili2@gmx.de> | 2015-03-29 12:20:03 +0200 |
commit | 0ae832d76de02f1894fc136d52605fe0d9fff59a (patch) | |
tree | ecc60b5fbd51bfc0224f62c6d8c3d59ecd057d1b /app/Template | |
parent | 5536f6c6ce591ba05a169d2e33b6fb240378d8a4 (diff) |
add task name to subtask dashboard #682
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/app/subtasks.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/app/subtasks.php b/app/Template/app/subtasks.php index fdfbdf2f..487b66fc 100644 --- a/app/Template/app/subtasks.php +++ b/app/Template/app/subtasks.php @@ -6,6 +6,7 @@ <tr> <th class="column-10"><?= $paginator->order('Id', 'tasks.id') ?></th> <th class="column-20"><?= $paginator->order(t('Project'), 'project_name') ?></th> + <th><?= $paginator->order(t('Task'), 'task_name') ?></th> <th><?= $paginator->order(t('Subtask'), 'title') ?></th> <th class="column-20"><?= t('Time tracking') ?></th> </tr> @@ -18,6 +19,9 @@ <?= $this->a($this->e($subtask['project_name']), 'board', 'show', array('project_id' => $subtask['project_id'])) ?> </td> <td> + <?= $this->a($this->e($subtask['task_name']), 'task', 'show', array('task_id' => $subtask['task_id'], 'project_id' => $subtask['project_id'])) ?> + </td> + <td> <?= $this->toggleSubtaskStatus($subtask, 'dashboard') ?> </td> <td> |