m.build.html.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * The build browse mobile view file of project 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 project
  9. * @version $Id
  10. * @link http://www.zentao.net
  11. */
  12. include "../../common/view/m.header.html.php";
  13. ?>
  14. <div class='heading'>
  15. <div class='title'>
  16. <strong><?php echo $lang->project->build;?></strong>
  17. </div>
  18. </div>
  19. <section id='page' class='section list-with-pager'>
  20. <div class='box'>
  21. <table class='table bordered no-margin'>
  22. <thead>
  23. <tr>
  24. <th><?php echo $lang->build->product;?></th>
  25. <th><?php echo $lang->build->name;?></th>
  26. <th class='text-center w-140px'><?php echo $lang->build->date;?></th>
  27. </tr>
  28. </thead>
  29. <?php foreach($projectBuilds as $builds):?>
  30. <?php foreach($builds as $build):?>
  31. <tr class= 'text-center' data-id='<?php echo $build->id ?>' data-url='<?php echo $this->createLink('build', 'view', 'buildID=' . $build->id);?>'>
  32. <td class='text-left'><?php echo $build->productName;?></td>
  33. <td class='text-left'><?php echo $build->name;?></td>
  34. <td><?php echo $build->date;?></td>
  35. </tr>
  36. <?php endforeach;?>
  37. <?php endforeach;?>
  38. </table>
  39. </div>
  40. </section>
  41. <?php include "../../common/view/m.footer.html.php"; ?>