diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-08-22 20:30:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-08-22 20:30:23 -0400 |
commit | 89ca0908014413e17adf73de55ff1731b9729706 (patch) | |
tree | 14bdda464046294c9f6fccd21f22aae75a50ee09 /app/Template/board/task_footer.php | |
parent | cd9bc86fbeea01fa492606b9c19ded36bf0ab366 (diff) |
Add milestone marker in board task
Diffstat (limited to 'app/Template/board/task_footer.php')
-rw-r--r-- | app/Template/board/task_footer.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/app/Template/board/task_footer.php b/app/Template/board/task_footer.php index cadcb2d6..2944db06 100644 --- a/app/Template/board/task_footer.php +++ b/app/Template/board/task_footer.php @@ -63,4 +63,10 @@ <?php if (! empty($task['time_estimated'])): ?> <span class="task-time-estimated" title="<?= t('Time estimated') ?>"><?= $this->e($task['time_estimated']).'h' ?></span> <?php endif ?> + + <?php if ($task['is_milestone'] == 1): ?> + <span title="<?= t('Milestone') ?>"> + <i class="fa fa-flag"></i> + </span> + <?php endif ?> </div> |