m.project.html.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * The execution mobile view file of product module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 Yidong Wang <yidong@cnezsoft.com>
  8. * @package product
  9. * @version $Id$
  10. * @link http://www.zentao.net
  11. */
  12. $bodyClass = 'with-menu-top';
  13. ?>
  14. <?php include '../../common/view/m.header.html.php';?>
  15. <nav id='menu' class='menu nav affix dock-top canvas'>
  16. <?php echo html::a('###', $lang->executionCommon);?>
  17. </nav>
  18. <section id='page' class='section list-with-pager'>
  19. <?php $refreshUrl = $this->createLink('product', 'project', http_build_query($this->app->getParams()));?>
  20. <div class='box' data-refresh-url='<?php echo $refreshUrl ?>'>
  21. <table class='table bordered no-margin'>
  22. <thead>
  23. <tr>
  24. <th><?php echo $lang->project->name;?></th>
  25. <th class='w-100px'><?php echo $lang->execution->end;?></th>
  26. <th class='w-80px'><?php echo $lang->project->status;?></th>
  27. <th class='w-50px'><?php echo $lang->execution->progress;?></th>
  28. </tr>
  29. </thead>
  30. <?php foreach($projectStats as $project):?>
  31. <tr class='text-center' data-url='<?php echo $this->createLink('execution', 'task', "executionID=$project->id")?>'>
  32. <td class='text-left'><?php echo $project->name;?></td>
  33. <td><?php echo $project->end;?></td>
  34. <?php if(isset($project->delay)):?>
  35. <td class='status-delay'><?php echo $lang->execution->delayed;?></td>
  36. <?php else:?>
  37. <td class='status-<?php echo $project->status?>'><?php echo $lang->execution->statusList[$project->status];?></td>
  38. <?php endif;?>
  39. <td><?php echo $project->hours->progress . '%';?></td>
  40. </tr>
  41. <?php endforeach;?>
  42. </table>
  43. </div>
  44. </section>
  45. <?php include '../../common/view/m.footer.html.php';?>