* Finish task#42128.

This commit is contained in:
xieqiyu
2021-09-03 10:48:17 +08:00
parent 2d485513cd
commit fbf6b37c23
7 changed files with 9 additions and 6 deletions
@@ -20,6 +20,7 @@
<table class="table no-margin table-grouped text-center">
<thead>
<tr>
<th style='width: 5px; padding: 0px; border-right: unset !important'></th>
<th><?php echo $lang->execution->doingProject . ' (' . $projectCount . ')';?></th>
<?php foreach($lang->execution->kanbanColType as $status => $colName):?>
<th><?php echo $colName . ($status != 'closed' ? ' (' . $statusCount[$status] . ')' : '');?></th>
@@ -30,6 +31,7 @@
<?php $rowIndex = 0;?>
<?php foreach($kanbanGroup as $projectID => $executionList):?>
<tr>
<td style="background: <?php echo $lang->execution->boardColorList[$rowIndex];?>;"></td>
<td class='board-project'>
<div data-id='<?php echo $projectID;?>'>
<div class='text-center'>
@@ -81,6 +83,7 @@
</td>
</tr>
<?php $rowIndex++; ?>
<?php if($rowIndex == 9) $rowIndex = 0;?>
<?php endforeach;?>
</tbody>
</table>