mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
13 lines
No EOL
535 B
PHP
13 lines
No EOL
535 B
PHP
<?php if ($task['time_estimated'] > 0 || $task['time_spent'] > 0): ?>
|
|
|
|
<div class="page-header">
|
|
<h2><?= t('Time tracking') ?></h2>
|
|
</div>
|
|
|
|
<ul class="listing">
|
|
<li><?= t('Estimate:') ?> <strong><?= $this->e($task['time_estimated']) ?></strong> <?= t('hours') ?></li>
|
|
<li><?= t('Spent:') ?> <strong><?= $this->e($task['time_spent']) ?></strong> <?= t('hours') ?></li>
|
|
<li><?= t('Remaining:') ?> <strong><?= $this->e($task['time_estimated'] - $task['time_spent']) ?></strong> <?= t('hours') ?></li>
|
|
</ul>
|
|
|
|
<?php endif ?>
|