Add icon for due date and use short format (pull-request #468)

This commit is contained in:
Frédéric Guillot
2014-12-14 18:04:48 -05:00
parent 23a9a19f3d
commit 5a28e9095d
15 changed files with 18 additions and 5 deletions

View File

@@ -83,7 +83,7 @@
<?php if (! empty($task['date_due'])): ?>
<div class="task-board-date <?= time() > $task['date_due'] ? 'task-board-date-overdue' : '' ?>">
<?= dt('%B %e, %Y', $task['date_due']) ?>
<i class="fa fa-calendar"></i>&nbsp;<?= dt('%b %e, %Y', $task['date_due']) ?>
</div>
<?php endif ?>