start.html.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The start view of productplan module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(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 MengYi Liu <liumengyi@easycorp.ltd>
  8. * @package productplan
  9. * @version $Id: start.html.php 4728 2021-12-28 09:57:34Z $
  10. * @link https://www.zentao.net
  11. */
  12. ?>
  13. <?php include '../../common/view/header.html.php';?>
  14. <?php include '../../common/view/kindeditor.html.php';?>
  15. <div id='mainContent' class='main-content'>
  16. <div class='center-block'>
  17. <div class='main-header'>
  18. <h2><?php echo $lang->productplan->setDate;?></strong></h2>
  19. </div>
  20. <form class="load-indicator main-form form-ajax" method='post' target='hiddenwin'>
  21. <table class='table table-form'>
  22. <tr>
  23. <th><?php echo $lang->productplan->begin;?></th>
  24. <td colspan='2'><?php echo html::input('begin', $plan->begin != $config->productplan->future ? formatTime($plan->begin) : '', "class='form-control form-date'");?></td>
  25. </tr>
  26. <tr>
  27. <th><?php echo $lang->productplan->end;?></th>
  28. <td colspan='2'><?php echo html::input('end', $plan->end != $config->productplan->future ? formatTime($plan->end) : '', 'class="form-control form-date"');?></td>
  29. </tr>
  30. <tr>
  31. <th><?php echo $lang->productplan->desc;?></th>
  32. <td colspan='4'><?php echo html::textarea('desc', $plan->desc, 'class="form-control"');?></td>
  33. </tr>
  34. <tr>
  35. <td colspan='5' class='text-center form-actions'>
  36. <?php echo html::submitButton($lang->productplan->start);?>
  37. <?php echo html::commonButton($lang->cancel, "data-dismiss='modal'", 'btn btn-wide');?>
  38. </td>
  39. </tr>
  40. </table>
  41. </form>
  42. </div>
  43. </div>
  44. <?php include '../../common/view/footer.html.php';?>