summaryrefslogtreecommitdiff
path: root/app/Template/task_timesheet.php
blob: cd093657883044edefcd18256fa67e1bcf51d07b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php if ($timesheet['time_estimated'] > 0 || $timesheet['time_spent'] > 0): ?>

<div class="page-header">
    <h2><?= t('Time tracking') ?></h2>
</div>

<ul class="listing">
    <li><?= t('Estimate:') ?> <strong><?= Helper\escape($timesheet['time_estimated']) ?></strong> <?= t('hours') ?></li>
    <li><?= t('Spent:') ?> <strong><?= Helper\escape($timesheet['time_spent']) ?></strong> <?= t('hours') ?></li>
    <li><?= t('Remaining:') ?> <strong><?= Helper\escape($timesheet['time_remaining']) ?></strong> <?= t('hours') ?></li>
</ul>

<?php endif ?>