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/project/activity.php | |
parent | 84b0f0df90442775b9122457648f06c9485df1f1 (diff) |
Add top links to the calendar
Diffstat (limited to 'app/Template/project/activity.php')
-rw-r--r-- | app/Template/project/activity.php | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/app/Template/project/activity.php b/app/Template/project/activity.php index cb986658..bc4eb19c 100644 --- a/app/Template/project/activity.php +++ b/app/Template/project/activity.php @@ -1,9 +1,22 @@ <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' => $project['id'])) ?></li> - <li><i class="fa fa-search fa-fw"></i><?= $this->a(t('Search'), 'project', 'search', array('project_id' => $project['id'])) ?></li> - <li><i class="fa fa-check-square-o fa-fw"></i><?= $this->a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?></li> + <li> + <i class="fa fa-table fa-fw"></i> + <?= $this->a(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?> + </li> + <li> + <i class="fa fa-calendar fa-fw"></i> + <?= $this->a(t('Calendar'), 'calendar', 'show', array('project_id' => $project['id'])) ?> + </li> + <li> + <i class="fa fa-search fa-fw"></i> + <?= $this->a(t('Search'), 'project', 'search', array('project_id' => $project['id'])) ?> + </li> + <li> + <i class="fa fa-check-square-o fa-fw"></i> + <?= $this->a(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?> + </li> <?php if ($project['is_public']): ?> <li><i class="fa fa-rss-square fa-fw"></i><?= $this->a(t('RSS feed'), 'project', 'feed', array('token' => $project['token']), false, '', '', true) ?></li> <?php endif ?> |