This commit is contained in:
tianshujie
2022-03-22 09:03:56 +08:00
parent 9ab0bd99c8
commit 93076c966b
2 changed files with 4 additions and 0 deletions

View File

@@ -71,6 +71,7 @@
</div>
</td>
</tr>
<?php if($card->progress):?>
<tr>
<th><?php echo $lang->kanbancard->progress;?></th>
<td>
@@ -80,6 +81,7 @@
</div>
</td>
</tr>
<?php endif;?>
</table>
</div>
</div>

View File

@@ -114,10 +114,12 @@
<th><?php echo $lang->kanbancard->estimate;?></th>
<td><?php echo round($card->estimate, 2) . ' ' . $lang->kanbancard->lblHour;?></td>
</tr>
<?php if($card->progress):?>
<tr>
<th><?php echo $lang->kanbancard->progress;?></th>
<td><?php echo round($card->progress, 2) . ' %';?></td>
</tr>
<?php endif;?>
</tbody>
</table>
</div>