summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-23 18:25:09 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-23 18:25:09 -0500
commitdc0cbee3913861eb4ebc02889b0462362d25df2a (patch)
treeb1a36fc31e0cb92319a3c9169bc01dda164d75c1
parent81df22de238bc36d810b95ad67a4426db095fbab (diff)
Add the task id to the details box
-rw-r--r--app/Template/task_details.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task_details.php b/app/Template/task_details.php
index a4fdf6ce..bbd2d648 100644
--- a/app/Template/task_details.php
+++ b/app/Template/task_details.php
@@ -1,5 +1,5 @@
<div class="task-<?= $task['color_id'] ?> task-show-details">
- <h2><?= Helper\escape($task['title']) ?></h2>
+ <h2><?= Helper\escape('#'.$task['id'].' '.$task['title']) ?></h2>
<?php if ($task['score']): ?>
<span class="task-score"><?= Helper\escape($task['score']) ?></span>
<?php endif ?>