diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:27:34 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-01-17 17:27:34 -0500 |
commit | 74e4a7b0642b18d9aaa71dd72359495c5dc99107 (patch) | |
tree | 9bfd7dc1b49c7634536e4226af082dba8d1d8369 /app/Template/task/layout.php | |
parent | 84b0f0df90442775b9122457648f06c9485df1f1 (diff) |
Add top links to the calendar
Diffstat (limited to 'app/Template/task/layout.php')
-rw-r--r-- | app/Template/task/layout.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/app/Template/task/layout.php b/app/Template/task/layout.php index dd36903d..dd59a9fc 100644 --- a/app/Template/task/layout.php +++ b/app/Template/task/layout.php @@ -1,7 +1,14 @@ <section id="main"> <div class="page-header"> <ul> - <li><i class="fa fa-table fa-fw"></i><?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $task['project_id'])) ?></li> + <li> + <i class="fa fa-table fa-fw"></i> + <?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $task['project_id'])) ?> + </li> + <li> + <i class="fa fa-calendar fa-fw"></i> + <?= $this->a(t('Calendar'), 'calendar', 'show', array('project_id' => $task['project_id'])) ?> + </li> </ul> </div> <section class="sidebar-container" id="task-section"> |