diff options
Diffstat (limited to 'app/Template/budget/index.php')
-rw-r--r-- | app/Template/budget/index.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/app/Template/budget/index.php b/app/Template/budget/index.php new file mode 100644 index 00000000..8bdf1a57 --- /dev/null +++ b/app/Template/budget/index.php @@ -0,0 +1,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> |