diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-06-13 16:57:46 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-06-13 16:57:46 -0400 |
commit | 0dc247dca1336b5bdd2f6fec292d47b8ef65ca19 (patch) | |
tree | 0144b6a3955cacd1c1a0263f097df92eb03b0fec /app/Template | |
parent | 8e0206d61e0b974c6ab676c9a645181c1f722a45 (diff) |
Add link to the board in notification footer
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/notification/footer.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Template/notification/footer.php b/app/Template/notification/footer.php index 7041c43b..69d2cf82 100644 --- a/app/Template/notification/footer.php +++ b/app/Template/notification/footer.php @@ -2,5 +2,6 @@ Kanboard <?php if (isset($application_url) && ! empty($application_url)): ?> - - <a href="<?= $application_url.$this->url->href('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= t('view the task on Kanboard') ?></a>. + - <a href="<?= $application_url.$this->url->href('task', 'show', array('task_id' => $task['id'], 'project_id' => $task['project_id'])) ?>"><?= t('view the task on Kanboard') ?></a> + - <a href="<?= $application_url.$this->url->href('board', 'show', array('project_id' => $task['project_id'])) ?>"><?= t('view the board on Kanboard') ?></a> <?php endif ?> |