m.bugblock.html.php 718 B

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