m.storyblock.html.php 732 B

12345678910111213141516
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $lang->story->title;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->statusAB;?></th>
  6. <th class='text-center w-90px'><?php echo $lang->story->stageAB;?></th>
  7. </tr>
  8. </thead>
  9. <?php foreach($stories as $story):?>
  10. <tr class= 'text-center' data-id='<?php echo $story->id ?>' data-url='<?php echo $this->createLink('story', 'view', 'storyID=' . $story->id);?>'>
  11. <td class='text-left'><?php echo $story->title;?></td>
  12. <td><?php echo zget($lang->story->statusList, $story->status, $story->status);?></td>
  13. <td><?php echo zget($lang->story->stageList, $story->stage, $story->stage);?></td>
  14. </tr>
  15. <?php endforeach;?>
  16. </table>