summaryrefslogtreecommitdiff
path: root/app/Templates
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
committerFrédéric Guillot <fred@kanboard.net>2014-08-17 09:43:57 -0700
commiteb76e1e530627eae34c74f0db3ed33d9a0da6810 (patch)
treefb90ae9e1a2977b0f2ab5feef706949aebfc50fc /app/Templates
parent44e91721b0edec28b4e37d3c6b8847854c108233 (diff)
Highlight recently modified tasks on board (pull-request #201)
Diffstat (limited to 'app/Templates')
-rw-r--r--app/Templates/board_show.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Templates/board_show.php b/app/Templates/board_show.php
index 2d857497..e91ab4cf 100644
--- a/app/Templates/board_show.php
+++ b/app/Templates/board_show.php
@@ -32,7 +32,7 @@
data-task-limit="<?= $column['task_limit'] ?>"
>
<?php foreach ($column['tasks'] as $task): ?>
- <div class="task-board draggable-item task-<?= $task['color_id'] ?>"
+ <div class="task-board draggable-item task-<?= $task['color_id'] ?> <?= $task['date_modification'] > time() - RECENT_TASK_PERIOD ? 'task-board-recent' : '' ?>"
data-task-id="<?= $task['id'] ?>"
data-owner-id="<?= $task['owner_id'] ?>"
data-category-id="<?= $task['category_id'] ?>"