m.todoblock.html.php 624 B

12345678910111213141516
  1. <table class='table bordered'>
  2. <thead>
  3. <tr>
  4. <th><?php echo $lang->todo->name;?></th>
  5. <th class='text-center w-70px'><?php echo $lang->todo->beginAB;?></th>
  6. <th class='text-center w-70px'><?php echo $lang->todo->endAB;?></th>
  7. </tr>
  8. </thead>
  9. <?php foreach($todos as $todo):?>
  10. <tr class= 'text-center' data-id='<?php echo $todo->id ?>' data-url='<?php echo $this->createLink('todo', 'view', 'todoID=' . $todo->id);?>'>
  11. <td class='text-left'><?php echo $todo->name;?></td>
  12. <td><?php echo $todo->begin;?></td>
  13. <td><?php echo $todo->end;?></td>
  14. </tr>
  15. <?php endforeach;?>
  16. </table>