diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-07-05 16:07:21 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-07-05 16:07:21 -0400 |
commit | bb8b4c0e36afc05ff5b0cb3ac6465351a696b001 (patch) | |
tree | e7499d04cfe32ed429413c2bbe0c81c33700d36a /app/Template/task/transitions.php | |
parent | 67b9a56469b406b44cd1baad4445ddb6d707794f (diff) |
Add task analytics
Diffstat (limited to 'app/Template/task/transitions.php')
-rw-r--r-- | app/Template/task/transitions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/task/transitions.php b/app/Template/task/transitions.php index 6455fd66..2ca2387f 100644 --- a/app/Template/task/transitions.php +++ b/app/Template/task/transitions.php @@ -19,7 +19,7 @@ <td><?= $this->e($transition['src_column']) ?></td> <td><?= $this->e($transition['dst_column']) ?></td> <td><?= $this->url->link($this->e($transition['name'] ?: $transition['username']), 'user', 'show', array('user_id' => $transition['user_id'])) ?></td> - <td><?= n(round($transition['time_spent'] / 3600, 2)).' '.t('hours') ?></td> + <td><?= $this->dt->duration($transition['time_spent']) ?></td> </tr> <?php endforeach ?> </table> |