diff options
author | Fábio Hideki <hideki.fabio@gmail.com> | 2015-06-04 21:55:43 -0300 |
---|---|---|
committer | Fábio Hideki <hideki.fabio@gmail.com> | 2015-06-04 21:55:43 -0300 |
commit | efc7c135637f40c8ca6cb739b7f199ef35d87e94 (patch) | |
tree | 2e1177fda04801d15f102e1cb9c852bd792b49f0 /app/Template/task/details.php | |
parent | 599b6624dde8cb1c1f6416ee0af530402089da4d (diff) |
adding time estimated in de task footer and swimlanes' name in the task details
Diffstat (limited to 'app/Template/task/details.php')
-rw-r--r-- | app/Template/task/details.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/Template/task/details.php b/app/Template/task/details.php index f688585a..7a99371f 100644 --- a/app/Template/task/details.php +++ b/app/Template/task/details.php @@ -9,6 +9,11 @@ <strong><?= t('Reference: %s', $task['reference']) ?></strong> </li> <?php endif ?> + <?php if ($task['swimlane_id']): ?> + <li> + <?= t('Swimlane: %s ', $this->swimlane->getNameById($task['swimlane_id'])) ?> + </li> + <?php endif ?> <li> <?= dt('Created on %B %e, %Y at %k:%M %p', $task['date_creation']) ?> </li> |