m.productblock.html.php 804 B

123456789101112131415161718
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $title;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->story->statusList['active'];?></th>
  6. <th class='text-center w-70px'><?php echo $lang->product->plans;?></th>
  7. <th class='text-center w-70px'><?php echo $lang->product->releases;?></th>
  8. </tr>
  9. </thead>
  10. <?php foreach($productStats as $product):?>
  11. <tr class= 'text-center' data-id='<?php echo $product->id ?>' data-url='<?php echo $this->createLink('product', 'browse', 'productID=' . $product->id);?>'>
  12. <td class='text-left'><?php echo $product->name;?></td>
  13. <td><?php echo $product->stories['active'];?></td>
  14. <td><?php echo $product->plans;?></td>
  15. <td><?php echo $product->releases;?></td>
  16. </tr>
  17. <?php endforeach;?>
  18. </table>