zentaopms/module/block/view/m.taskblock.html.php
2023-05-16 10:47:08 +08:00

17 lines
676 B
PHP

<table class='table bordered'>
<thead>
<tr>
<th><?php echo $lang->task->name;?></th>
<th class='text-center w-70px'><?php echo $lang->task->estimateAB;?></th>
<th class='text-center w-70px'><?php echo $lang->statusAB;?></th>
</tr>
</thead>
<?php foreach($tasks as $task):?>
<tr class= 'text-center' data-id='<?php echo $task->id ?>' data-url='<?php echo $this->createLink('task', 'view', 'taskID=' . $task->id);?>'>
<td class='text-left'><?php echo $task->name;?></td>
<td><?php echo $task->estimate;?></td>
<td><?php echo zget($lang->task->statusList, $task->status, $task->status);?></td>
</tr>
<?php endforeach;?>
</table>