diff options
author | Julian Maurice <julian.maurice@biblibre.com> | 2018-08-09 21:35:11 +0200 |
---|---|---|
committer | Julian Maurice <julian.maurice@biblibre.com> | 2018-08-11 10:15:13 +0200 |
commit | 9d4cd31e1aae02e9980932c67036fdfe574e3432 (patch) | |
tree | 6fca71d93aaed9032a0d771a0b8111d79fdc99b6 /app/Template/board/task_footer.php | |
parent | ae3ade0908bae350488260ee5d878a2ffbff605a (diff) |
Allow to associate tags to colors
The color is then used as background in the board, list and task details
views
Diffstat (limited to 'app/Template/board/task_footer.php')
-rw-r--r-- | app/Template/board/task_footer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/board/task_footer.php b/app/Template/board/task_footer.php index cdb75a1f..08af52a2 100644 --- a/app/Template/board/task_footer.php +++ b/app/Template/board/task_footer.php @@ -25,7 +25,7 @@ <div class="task-tags"> <ul> <?php foreach ($task['tags'] as $tag): ?> - <li><?= $this->text->e($tag['name']) ?></li> + <li class="task-tag <?= $tag['color_id'] ? "color-{$tag['color_id']}" : '' ?>"><?= $this->text->e($tag['name']) ?></li> <?php endforeach ?> </ul> </div> |