Improve project navigation

This commit is contained in:
Frederic Guillot
2015-05-31 17:57:02 -04:00
parent 380aacd3f5
commit 599b6624dd
26 changed files with 301 additions and 237 deletions

View File

@@ -0,0 +1,14 @@
<div class="sidebar">
<h2><?= t('Budget') ?></h2>
<ul>
<li>
<?= $this->url->link(t('Budget overview'), 'budget', 'index', array('project_id' => $project['id'])) ?>
</li>
<li>
<?= $this->url->link(t('Budget lines'), 'budget', 'create', array('project_id' => $project['id'])) ?>
</li>
<li>
<?= $this->url->link(t('Cost breakdown'), 'budget', 'breakdown', array('project_id' => $project['id'])) ?>
</li>
</ul>
</div>