diff options
Diffstat (limited to 'app/Templates/task_details.php')
-rw-r--r-- | app/Templates/task_details.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/Templates/task_details.php b/app/Templates/task_details.php index 8766beac..a4fdf6ce 100644 --- a/app/Templates/task_details.php +++ b/app/Templates/task_details.php @@ -22,11 +22,26 @@ <?= dt('Completed on %B %e, %Y at %k:%M %p', $task['date_completed']) ?> </li> <?php endif ?> + <?php if ($task['date_started']): ?> + <li> + <?= dt('Started on %B %e, %Y', $task['date_started']) ?> + </li> + <?php endif ?> <?php if ($task['date_due']): ?> <li> <strong><?= dt('Must be done before %B %e, %Y', $task['date_due']) ?></strong> </li> <?php endif ?> + <?php if ($task['time_estimated']): ?> + <li> + <?= t('Estimated time: %s hours', $task['time_estimated']) ?> + </li> + <?php endif ?> + <?php if ($task['time_spent']): ?> + <li> + <?= t('Time spent: %s hours', $task['time_spent']) ?> + </li> + <?php endif ?> <?php if ($task['creator_username']): ?> <li> <?= t('Created by %s', $task['creator_name'] ?: $task['creator_username']) ?> |