edit.html.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. /**
  3. * The create 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: edit.html.php 4903 2021-05-28 17:14:59Z hfz $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
  15. <div id="mainContent" class="main-content fade">
  16. <div class="center-block">
  17. <div class="main-header">
  18. <h2><?php echo $lang->gapanalysis->edit;?></h2>
  19. </div>
  20. <form class="load-indicator main-form form-ajax" method='post' enctype='multipart/form-data' id='dataform'>
  21. <table class="table table-form">
  22. <tbody>
  23. <tr>
  24. <th><?php echo $lang->gapanalysis->account;?></th>
  25. <td><?php echo html::input('account', zget($users, $gapanalysis->account), "class='form-control' disabled");?></td>
  26. <td></td>
  27. </tr>
  28. <tr>
  29. <th><?php echo $lang->gapanalysis->role;?></th>
  30. <td><?php echo html::input('role', $gapanalysis->role, "class='form-control' readonly")?></td>
  31. </tr>
  32. <tr>
  33. <th><?php echo $lang->gapanalysis->analysis;?></th>
  34. <td colspan="2"><?php echo html::textarea('analysis', $gapanalysis->analysis, "rows='6' class='form-control'");?></td>
  35. </tr>
  36. <tr>
  37. <th><?php echo $lang->gapanalysis->needTrain;?></th>
  38. <td><?php echo html::radio('needTrain', $lang->gapanalysis->needTrainList, $gapanalysis->needTrain);?></td>
  39. <td></td>
  40. </tr>
  41. <tr>
  42. <td colspan='3' class='form-actions text-center'>
  43. <?php echo html::submitButton() . html::backButton();?>
  44. </td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. </form>
  49. </div>
  50. </div>
  51. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>