m.managemembers.html.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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->manageMembers;?></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->team->account;?></th>
  25. <th><?php echo $lang->team->role;?></th>
  26. <th class='w-80px'><?php echo $lang->team->days;?></th>
  27. <th class='w-100px'><?php echo $lang->team->hours;?></th>
  28. <th class='w-80px'><?php echo $lang->team->limited;?></th>
  29. </tr>
  30. </thead>
  31. <?php foreach($currentMembers as $member):?>
  32. <?php if(!isset($users[$member->account])) continue;?>
  33. <tr class= 'text-center'>
  34. <td class='text-left'><?php echo $member->realname;?></td>
  35. <td class='text-left'><?php echo $member->role;?></td>
  36. <td><?php echo $member->days;?></td>
  37. <td><?php echo $member->hours;?></td>
  38. <td><?php echo zget($lang->team->limitedList, $member->limited, '');?></td>
  39. </tr>
  40. <?php endforeach;?>
  41. </table>
  42. </div>
  43. </section>
  44. <?php include "../../common/view/m.footer.html.php"; ?>