edit.html.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * The browse view file of dimension module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2022 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
  6. * @license ZPL (http://zpl.pub/page/zplv12.html)
  7. * @author Chenxuan Song <1097180981@qq.com>
  8. * @package dimension
  9. * @version $Id: edit.html.php 4129 2022-11-1 14:18:32Z $
  10. * @link http://www.zentao.net
  11. */
  12. ?>
  13. <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
  14. <div id='mainContent' class='main-content'>
  15. <div class='center-block'>
  16. <div class='main-header'>
  17. <h2><?php echo $lang->dimension->edit;?></h2>
  18. </div>
  19. <form class='form-indicator main-form form-ajax' method='post' target='hiddenwin' id='dataform'>
  20. <table class='table table-form'>
  21. <tr>
  22. <th class='thWidth'><?php echo $lang->dimension->name;?></th>
  23. <td class='w-400px'>
  24. <?php echo html::input('name', $dimension->name, "class='form-control'");?>
  25. </td>
  26. </tr>
  27. <tr>
  28. <th><?php echo $lang->dimension->code;?></th>
  29. <td>
  30. <?php echo html::input('code', $dimension->code, "class='form-control' placeholder='{$lang->dimension->codeHolder}'");?>
  31. </td>
  32. </tr>
  33. <tr>
  34. <th><?php echo $lang->dimension->desc;?></th>
  35. <td><?php echo html::textarea('desc', $dimension->desc, "rows='7' class='form-control'");?></td>
  36. </tr>
  37. <tr>
  38. <td></td>
  39. <td class='form-actions'>
  40. <?php echo html::submitButton();?>
  41. </td>
  42. </tr>
  43. </table>
  44. </form>
  45. </div>
  46. </div>
  47. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>