m.executionblock.html.php 884 B

12345678910111213141516171819202122
  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->statusAB;?></th>
  6. <th class='text-center w-70px'><?php echo $lang->execution->progress;?></th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <?php foreach($executionStats as $execution):?>
  11. <tr class= 'text-center' data-id='<?php echo $execution->id ?>' data-url='<?php echo $this->createLink('execution', 'task', 'executionID=' . $execution->id);?>'>
  12. <td class='text-left'><?php echo $execution->name;?></td>
  13. <?php if(isset($execution->delay)):?>
  14. <td><?php echo $lang->execution->delayed;?></td>
  15. <?php else:?>
  16. <td><?php echo $lang->execution->statusList[$execution->status];?></td>
  17. <?php endif;?>
  18. <td><?php echo $execution->hours->progress;?>%</td>
  19. </tr>
  20. <?php endforeach;?>
  21. </tbody>
  22. </table>