diff options
author | Sébastien Kergreis <seb.kerro@gmail.com> | 2016-06-03 13:59:45 -0500 |
---|---|---|
committer | Sébastien Kergreis <seb.kerro@gmail.com> | 2016-06-03 13:59:45 -0500 |
commit | a9025e5102a3358e106b56d782a0e7dbb295af59 (patch) | |
tree | 77b94e2a65d878da68a847357302621d0eb0c10b /app/Template/header.php | |
parent | a27057dd6fbf59e7e88ac19494573a5415d2707e (diff) |
Add link in project name
Diffstat (limited to 'app/Template/header.php')
-rw-r--r-- | app/Template/header.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/app/Template/header.php b/app/Template/header.php index 15b70ead..4efd1996 100644 --- a/app/Template/header.php +++ b/app/Template/header.php @@ -5,7 +5,11 @@ <?= $this->url->link('K<span>B</span>', 'DashboardController', 'show', array(), false, '', t('Dashboard')) ?> </span> <span class="title"> - <?= $this->text->e($title) ?> + <?php if (isset($project) && ! empty($project)): ?> + <?= $this->url->link($this->text->e($project['name']), 'BoardViewController', 'show', array('project_id' => $project['id'])) ?> + <?php else: ?> + <?= $this->text->e($title) ?> + <?php endif ?> </span> <?php if (! empty($description)): ?> <span class="tooltip" title="<?= $this->text->markdownAttribute($description) ?>"> |