Show both time spent and estimated on the board
This commit is contained in:
@@ -7,6 +7,7 @@ New features:
|
|||||||
|
|
||||||
Improvements:
|
Improvements:
|
||||||
|
|
||||||
|
* Show both time spent and estimated on the board
|
||||||
* Store board collapsed mode user preference in the database
|
* Store board collapsed mode user preference in the database
|
||||||
* Store comment sorting direction in the database
|
* Store comment sorting direction in the database
|
||||||
* Avoid tags overlapping on the board
|
* Avoid tags overlapping on the board
|
||||||
|
|||||||
@@ -81,8 +81,10 @@
|
|||||||
</span>
|
</span>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php if (! empty($task['time_estimated'])): ?>
|
<?php if (! empty($task['time_estimated']) || ! empty($task['time_spent'])): ?>
|
||||||
<span class="task-time-estimated" title="<?= t('Time estimated') ?>"><?= $this->text->e($task['time_estimated']).'h' ?></span>
|
<span class="task-time-estimated" title="<?= t('Time spent and estimated') ?>">
|
||||||
|
<?= $this->text->e($task['time_spent']) ?>/<?= $this->text->e($task['time_estimated']) ?>h
|
||||||
|
</span>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
|
|
||||||
<?php if ($task['is_milestone'] == 1): ?>
|
<?php if ($task['is_milestone'] == 1): ?>
|
||||||
|
|||||||
Reference in New Issue
Block a user