diff options
Diffstat (limited to 'app/Template/board/task_footer.php')
-rw-r--r-- | app/Template/board/task_footer.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/Template/board/task_footer.php b/app/Template/board/task_footer.php index 7d651a79..b20e4a3e 100644 --- a/app/Template/board/task_footer.php +++ b/app/Template/board/task_footer.php @@ -39,6 +39,13 @@ <?php endif ?> <div class="task-board-icons"> + <?php if ($task['score']): ?> + <span class="task-score" title="<?= t('Complexity') ?>"> + <i class="fa fa-trophy"></i> + <?= $this->text->e($task['score']) ?> + </span> + <?php endif ?> + <?php if (! empty($task['date_due'])): ?> <span class="task-board-date <?= time() > $task['date_due'] ? 'task-board-date-overdue' : '' ?>"> <i class="fa fa-calendar"></i> @@ -80,10 +87,6 @@ </span> <?php endif ?> - <?php if ($task['score']): ?> - <span class="task-score"><?= $this->text->e($task['score']) ?></span> - <?php endif ?> - <?php if (! empty($task['time_estimated'])): ?> <span class="task-time-estimated" title="<?= t('Time estimated') ?>"><?= $this->text->e($task['time_estimated']).'h' ?></span> <?php endif ?> |