summaryrefslogtreecommitdiff
path: root/app/Template/calendar
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-05-31 17:57:02 -0400
committerFrederic Guillot <fred@kanboard.net>2015-05-31 17:57:02 -0400
commit599b6624dde8cb1c1f6416ee0af530402089da4d (patch)
tree2cc995b09a4b2e67de276389fb28b0040d484296 /app/Template/calendar
parent380aacd3f586089ae5c1e69841c0e0cb99478dcd (diff)
Improve project navigation
Diffstat (limited to 'app/Template/calendar')
-rw-r--r--app/Template/calendar/show.php22
1 files changed, 12 insertions, 10 deletions
diff --git a/app/Template/calendar/show.php b/app/Template/calendar/show.php
index 3fe97b65..cf2a20ec 100644
--- a/app/Template/calendar/show.php
+++ b/app/Template/calendar/show.php
@@ -2,20 +2,22 @@
<div class="page-header">
<ul>
<li>
+ <span class="dropdown">
+ <span>
+ <i class="fa fa-caret-down"></i> <a href="#" class="dropdown-menu"><?= t('Actions') ?></a>
+ <ul>
+ <?= $this->render('project/dropdown', array('project' => $project)) ?>
+ </ul>
+ </span>
+ </span>
+ </li>
+ <li>
<i class="fa fa-table fa-fw"></i>
<?= $this->url->link(t('Back to the board'), 'board', 'show', array('project_id' => $project['id'])) ?>
</li>
<li>
- <i class="fa fa-search fa-fw"></i>
- <?= $this->url->link(t('Search'), 'project', 'search', array('project_id' => $project['id'])) ?>
- </li>
- <li>
- <i class="fa fa-check-square-o fa-fw"></i>
- <?= $this->url->link(t('Completed tasks'), 'project', 'tasks', array('project_id' => $project['id'])) ?>
- </li>
- <li>
- <i class="fa fa-dashboard fa-fw"></i>
- <?= $this->url->link(t('Activity'), 'project', 'activity', array('project_id' => $project['id'])) ?>
+ <i class="fa fa-folder fa-fw"></i>
+ <?= $this->url->link(t('All projects'), 'project', 'index') ?>
</li>
</ul>
</div>