m.releaseblock.html.php 640 B

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