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/board/task_footer.php | |
parent | 599b6624dde8cb1c1f6416ee0af530402089da4d (diff) |
adding time estimated in de task footer and swimlanes' name in the task details
Diffstat (limited to 'app/Template/board/task_footer.php')
-rw-r--r-- | app/Template/board/task_footer.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/Template/board/task_footer.php b/app/Template/board/task_footer.php index 5945d5af..e191dca7 100644 --- a/app/Template/board/task_footer.php +++ b/app/Template/board/task_footer.php @@ -58,4 +58,8 @@ <?php if ($task['score']): ?> <span class="task-score"><?= $this->e($task['score']) ?></span> <?php endif ?> + + <?php if (! empty($task['time_estimated'])): ?> + <strong><?= $this->e($task['time_estimated']).'h' ?> <?= t('estimated') ?></strong> + <?php endif ?> </div> |