m.taskblock.html.php 676 B

12345678910111213141516
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $lang->task->name;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->task->estimateAB;?></th>
  6. <th class='text-center w-70px'><?php echo $lang->statusAB;?></th>
  7. </tr>
  8. </thead>
  9. <?php foreach($tasks as $task):?>
  10. <tr class= 'text-center' data-id='<?php echo $task->id ?>' data-url='<?php echo $this->createLink('task', 'view', 'taskID=' . $task->id);?>'>
  11. <td class='text-left'><?php echo $task->name;?></td>
  12. <td><?php echo $task->estimate;?></td>
  13. <td><?php echo zget($lang->task->statusList, $task->status, $task->status);?></td>
  14. </tr>
  15. <?php endforeach;?>
  16. </table>