batchedit.html.php 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * The batchedit of gapanalysis module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(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 Fangzhou Hu <hufangzhou@easycorp.ltd>
  8. * @package gapanalysis
  9. * @version $Id: batchedit.html.php 4903 2021-06-11 13:14:59Z hfz $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <div id="mainContent" class="main-content fade">
  15. <div class="main-header">
  16. <h2><?php echo $lang->gapanalysis->batchEdit;?></h2>
  17. </div>
  18. <form class="load-indicator main-form" method='post' target='hiddenwin' enctype='multipart/form-data' id='dataform'>
  19. <table class="table table-form">
  20. <thead>
  21. <tr>
  22. <th class='c-id'><?php echo $lang->gapanalysis->id;?></th>
  23. <th class='required' style="width: 100%"><?php echo $lang->gapanalysis->account;?></th>
  24. <th class='c-role'><?php echo $lang->gapanalysis->role;?></th>
  25. <th class='c-needtrain'><?php echo $lang->gapanalysis->needTrain;?></th>
  26. </tr>
  27. </thead>
  28. <tbody>
  29. <?php foreach($gapanalysises as $gapanalysisID => $gapanalysis):?>
  30. <tr>
  31. <td><?php echo $gapanalysisID . html::hidden("gapanalysisIdList[$gapanalysisID]", $gapanalysisID);?></td>
  32. <td><?php echo html::input("account[$gapanalysisID]", zget($users, $gapanalysis->account), "class='form-control picker-select' disabled");?></td>
  33. <td><?php echo html::input("role[$gapanalysisID]", $gapanalysis->role, "class='form-control' readonly");?></td>
  34. <td><?php echo html::radio("needTrain[$gapanalysisID]", $lang->gapanalysis->needTrainList, $gapanalysis->needTrain);?></td>
  35. </tr>
  36. <?php endforeach;?>
  37. <tr>
  38. <td colspan='6' class='form-actions text-center'>
  39. <?php echo html::submitButton() . html::backButton();?>
  40. </td>
  41. </tr>
  42. </tbody>
  43. </table>
  44. </form>
  45. </div>
  46. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>