m.testtask.html.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * The testtask browse mobile view file of execution module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2016 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
  6. * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
  7. * @author Fei Chen <chenfei@cnezsoft.com>
  8. * @package execution
  9. * @version $Id
  10. * @link http://www.zentao.net
  11. */
  12. include "../../common/view/m.header.html.php";
  13. ?>
  14. <section id='page' class='section list-with-pager'>
  15. <table class='table bordered'>
  16. <thead>
  17. <tr>
  18. <th><?php echo $lang->testtask->name;?></th>
  19. <th class='text-center w-140px'><?php echo $lang->testtask->begin;?></th>
  20. <th class='text-center w-140px'><?php echo $lang->testtask->end;?></th>
  21. </tr>
  22. </thead>
  23. <?php foreach($tasks as $product => $productTasks):?>
  24. <?php foreach($productTasks as $task):?>
  25. <tr class= 'text-center' data-id="<?php echo $task->id;?>" data-url="<?php echo $this->createLink('testtask', 'view', 'testtaskID=' . $task->id);?>">
  26. <td class='text-left'><?php echo $task->name;?></td>
  27. <td class='w-100px'><?php echo $task->begin;?></td>
  28. <td class='w-100px'><?php echo $task->end;?></td>
  29. </tr>
  30. <?php endforeach;?>
  31. <?php endforeach;?>
  32. </table>
  33. </section>
  34. <?php include "../../common/view/m.footer.html.php"; ?>