diff options
Diffstat (limited to 'templates/task_show.php')
-rw-r--r-- | templates/task_show.php | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/templates/task_show.php b/templates/task_show.php index eaabdfb1..97ce7f8c 100644 --- a/templates/task_show.php +++ b/templates/task_show.php @@ -1,6 +1,6 @@ <section id="main"> <div class="page-header"> - <h2>#<?= $task['id'] ?> - <?= Helper\escape($task['title']) ?></h2> + <h2><?= Helper\escape($task['project_name']) ?> > <?= t('Task #%d', $task['id']) ?></h2> <ul> <li><a href="?controller=board&action=show&project_id=<?= $task['project_id'] ?>"><?= t('Back to the board') ?></a></li> </ul> @@ -26,8 +26,8 @@ </div> <div class="task-show-main"> - <h2><?= t('Details') ?></h2> - <article id="infos" class="task task-<?= $task['color_id'] ?>"> + <article class="task task-<?= $task['color_id'] ?> task-show-details"> + <h2><?= Helper\escape($task['title']) ?></h2> <?php if ($task['score']): ?> <span class="task-score"><?= Helper\escape($task['score']) ?></span> <?php endif ?> @@ -71,7 +71,7 @@ <h2><?= t('Description') ?></h2> <?php if ($task['description']): ?> - <article id="description" class="markdown"> + <article class="markdown task-show-description"> <?= Helper\markdown($task['description']) ?: t('There is no description.') ?> </article> <?php else: ?> @@ -115,7 +115,6 @@ </div> </form> <?php endif ?> - </div> </section> |