m.buildblock.html.php 622 B

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