Add the task id to the details box

This commit is contained in:
Frédéric Guillot 2014-11-23 18:25:09 -05:00
parent 81df22de23
commit dc0cbee391
1 changed files with 1 additions and 1 deletions

View File

@ -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 ?>