create.html.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?php
  2. /**
  3. * The browse view file of release module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 Chunsheng Wang <chunsheng@cnezsoft.com>
  8. * @package release
  9. * @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $
  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>
  18. <?php echo $lang->approvalflow->create;?>
  19. </h2>
  20. </div>
  21. <form class='form-ajax' method='post'>
  22. <table class="table table-form">
  23. <tr>
  24. <th class='w-100px'><?php echo $lang->approvalflow->type;?></th>
  25. <td><?php echo html::select('type', $lang->approvalflow->typeList, $type, "class='form-control chosen'");?></td>
  26. <td></td>
  27. </tr>
  28. <tr>
  29. <th><?php echo $lang->approvalflow->name;?></th>
  30. <td class='required'><?php echo html::input('name', '', "class='form-control'");?></td>
  31. </tr>
  32. <tr>
  33. <th><?php echo $lang->approvalflow->desc;?></th>
  34. <td colspan='2'><?php echo html::textarea('desc', '', "class='form-control' rows=5");?></td>
  35. </tr>
  36. <tr>
  37. <td colspan='3' class='form-actions text-center'>
  38. <?php echo html::submitButton();?>
  39. <?php echo html::backButton();?>
  40. </td>
  41. </tr>
  42. </table>
  43. </form>
  44. </div>
  45. </div>
  46. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>