diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-03-28 18:00:18 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-03-28 18:00:18 -0400 |
commit | 9bfab51e00608b6e008aa71f6df74104b28fc662 (patch) | |
tree | c390346c8ed384c78bf85bbdd950d70bd9a9ab51 /app/Template/budget | |
parent | eb6853c163e9059bbbc89a1a741d4a25c8e04153 (diff) |
Add currency rates for budget calculation
Diffstat (limited to 'app/Template/budget')
-rw-r--r-- | app/Template/budget/breakdown.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/budget/breakdown.php b/app/Template/budget/breakdown.php index d4168406..0a3c63d7 100644 --- a/app/Template/budget/breakdown.php +++ b/app/Template/budget/breakdown.php @@ -22,7 +22,7 @@ <tr> <td><?= $this->a($this->e($record['task_title']), 'task', 'show', array('project_id' => $project['id'], 'task_id' => $record['task_id'])) ?></td> <td><?= $this->a($this->e($record['subtask_title']), 'task', 'show', array('project_id' => $project['id'], 'task_id' => $record['task_id'])) ?></td> - <td><?= $this->e($record['name'] ?: $record['username']) ?></td> + <td><?= $this->a($this->e($record['name'] ?: $record['username']), 'user', 'show', array('user_id' => $record['user_id'])) ?></td> <td><?= n($record['cost']) ?></td> <td><?= n($record['time_spent']).' '.t('hours') ?></td> <td><?= dt('%B %e, %Y', $record['start']) ?></td> |