blob: 8bdf1a57a3e7a656c3c0e5a2e10495406b925431 (
plain)
1
2
3
4
5
6
7
8
9
|
<div class="page-header">
<h2><?= t('Budget') ?></h2>
<ul>
<li><?= $this->a(t('Budget lines'), 'budget', 'create', array('project_id' => $project['id'])) ?></li>
<li><?= $this->a(t('Burn rate'), 'budget', 'index', array('project_id' => $project['id'])) ?></li>
</ul>
</div>
<p><?= t('Current budget: ') ?><strong><?= n($total) ?></strong></p>
|