summaryrefslogtreecommitdiff
path: root/templates/board_index.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/board_index.php')
-rw-r--r--templates/board_index.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/board_index.php b/templates/board_index.php
index 20862a4b..e6054189 100644
--- a/templates/board_index.php
+++ b/templates/board_index.php
@@ -74,6 +74,19 @@
<?= Helper\escape($task['title']) ?>
</div>
+ <div class="task-footer">
+ <?php if (! empty($task['date_due'])): ?>
+ <div class="task-date">
+ <?= dt('%B %e, %G', $task['date_due']) ?>
+ </div>
+ <?php endif ?>
+
+ <?php if (! empty($task['nb_comments'])): ?>
+ <div class="task-comment-counter">
+ <?= $task['nb_comments'] ?>
+ </div>
+ <?php endif ?>
+ </div>
</div>
</div>
<?php endforeach ?>