close.html.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. /**
  3. * The close of risk module of ZenTaoPMS.
  4. *
  5. * @copyright Copyright 2009-2020 禅道软件(青岛)有限公司(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 Yuchun Li <liyuchun@cnezsoft.com>
  8. * @package risk
  9. * @version $Id: close.html.php 4903 2020-09-04 09:32:59Z lyc $
  10. * @link http://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'>
  16. <div class='main-header'>
  17. <h2>
  18. <span class='prefix label-id'><strong><?php echo $risk->id;?></strong></span>
  19. <?php echo "<span title='$risk->name'>" . $risk->name . '</span>';?>
  20. </h2>
  21. </div>
  22. <form class='load-indicator main-form' method='post' target='hiddenwin'>
  23. <table class='table table-form'>
  24. <tbody>
  25. <tr>
  26. <th class='w-100px'><?php echo $lang->risk->resolvedBy;?></th>
  27. <td><?php echo html::select('resolvedBy', $users, $this->app->user->account, "class='form-control chosen'");?></td>
  28. <td></td>
  29. </tr>
  30. <tr>
  31. <th class='w-100px'><?php echo $lang->risk->closedDate;?></th>
  32. <td><?php echo html::input('actualClosedDate', helper::today(), "class='form-control form-date'");?></td>
  33. <td></td>
  34. </tr> <tr>
  35. <th><?php echo $lang->risk->resolution;?></th>
  36. <td colspan='2'><?php echo html::textarea('resolution', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
  37. </tr>
  38. <tr>
  39. <td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td> </tr>
  40. </tbody>
  41. </table>
  42. </form>
  43. </div>
  44. <?php include $app->getModuleRoot() . "common/view/footer.html.php";?>