m.caseblock.html.php 727 B

12345678910111213141516
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $lang->case->title;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->testtask->lastRunResult;?></th>
  6. <th class='text-center w-70px'><?php echo $lang->statusAB;?></th>
  7. </tr>
  8. </thead>
  9. <?php foreach($cases as $case):?>
  10. <tr class= 'text-center' data-id='<?php echo $case->id ?>' data-url='<?php echo $this->createLink('case', 'view', 'caseID=' . $case->id);?>'>
  11. <td class='text-left'><?php echo $case->title;?></td>
  12. <td><?php if($case->lastRunResult) echo $lang->testcase->resultList[$case->lastRunResult];?></td>
  13. <td><?php echo $lang->testcase->statusList[$case->status];?></td>
  14. </tr>
  15. <?php endforeach;?>
  16. </table>