confirm.html.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /**
  3. * The cancel of issue 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 Jia Fu <fujia@cnezsoft.com>
  8. * @package issue
  9. * @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $
  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='center-block'>
  17. <div class='main-header'>
  18. <h2>
  19. <span class='label label-id'><?php echo $issue->id;?></span>
  20. <?php echo "<span title='$issue->title'>" . $issue->title . '</span>';?>
  21. </div>
  22. </div>
  23. <div class="modal-body" style="min-height: 282px; overflow: auto;">
  24. <form method='post' enctype='multipart/form-data' target='hiddenwin'>
  25. <table class='table table-form'>
  26. <tr>
  27. <th><?php echo $lang->issue->title;?></th>
  28. <td colspan='2'><?php echo $issue->title;?></td>
  29. </tr>
  30. <tr>
  31. <th><?php echo $lang->issue->desc;?></th>
  32. <td colspan='2'><?php echo html::textarea('desc', $issue->desc, 'row="6"');?></td>
  33. </tr>
  34. <tr>
  35. <td colspan='3' class='text-center form-actions'>
  36. <?php echo html::submitButton();?>
  37. </td>
  38. </tr>
  39. </table>
  40. </form>
  41. </div>
  42. </div>
  43. </div>
  44. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>