projectsummary.html.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  2. <?php if(common::checkNotCN()):?>
  3. <style>#conditions .col-xs {width: 126px;}</style>
  4. <?php endif;?>
  5. <div id='mainContent' class='main-row'>
  6. <div class='side-col col-lg' id='sidebar'>
  7. <?php include './blockreportlist.html.php';?>
  8. </div>
  9. <div class='main-col'>
  10. <?php if(empty($stages)):?>
  11. <div class="cell">
  12. <div class="table-empty-tip">
  13. <p><span class="text-muted"><?php echo $lang->error->noData;?></span></p>
  14. </div>
  15. </div>
  16. <?php else:?>
  17. <div class='cell'>
  18. <div class='panel'>
  19. <div class="panel-heading">
  20. <div class="panel-title">
  21. <div class="table-row" id='conditions'>
  22. <div class="col-xs"><?php echo $title;?></div>
  23. </div>
  24. </div>
  25. <nav class="panel-actions btn-toolbar"></nav>
  26. </div>
  27. <div data-ride='table'>
  28. <table class='table table-condensed table-striped table-bordered table-fixed no-margin' id='programList'>
  29. <thead>
  30. <tr>
  31. <th class='w-200px'><?php echo $lang->execution->name;?></th>
  32. <th class='w-120px text-center'><?php echo $lang->execution->owner;?></th>
  33. <th class="w-100px text-center"><?php echo $lang->execution->begin;?></th>
  34. <th class="w-100px text-center"><?php echo $lang->execution->end;?></th>
  35. <th class="w-70px text-center"><?php echo $lang->execution->taskCount;?></th>
  36. </tr>
  37. </thead>
  38. <tbody>
  39. <?php foreach($stages as $stage):?>
  40. <tr class="text-center">
  41. <td class='text-left' title="<?php echo $stage->name;?>"><?php echo $stage->name;?></td>
  42. <td><?php echo zget($users, $stage->PM);?></td>
  43. <td><?php echo $stage->begin;?></td>
  44. <td><?php echo $stage->end;?></td>
  45. <td><?php echo $stage->tasks;?></td>
  46. </tr>
  47. <?php endforeach;?>
  48. </tbody>
  49. </table>
  50. </div>
  51. </div>
  52. </div>
  53. <?php endif;?>
  54. </div>
  55. </div>
  56. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>