m.testtaskblock.html.php 670 B

12345678910111213141516
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $lang->testtask->name;?></th>
  5. <th class='text-center w-100px'><?php echo $lang->testtask->begin;?></th>
  6. <th class='text-center w-100px'><?php echo $lang->testtask->end;?></th>
  7. </tr>
  8. </thead>
  9. <?php foreach($testtasks as $testtask):?>
  10. <tr class= 'text-center' data-id='<?php echo $testtask->id ?>' data-url='<?php echo $this->createLink('testtask', 'view', 'testtaskID=' . $testtask->id);?>'>
  11. <td class='text-left'><?php echo $testtask->name;?></td>
  12. <td><?php echo $testtask->begin;?></td>
  13. <td><?php echo $testtask->end;?></td>
  14. </tr>
  15. <?php endforeach;?>
  16. </table>