resolved.html.php 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * The close view file of story 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 story
  9. * @version $Id: close.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. <span class='label label-id'><?php echo $issueID;?></span>
  19. <span title="<?php echo $issue->title;?>"><?php echo $issue->title;?></span>
  20. </h2>
  21. </div>
  22. <form method='post' target='hiddenwin'>
  23. <table class='table table-form'>
  24. <tr>
  25. <th class='thWidth'><?php echo $lang->reviewissue->resolution;?></th>
  26. <td class='required'>
  27. <?php echo html::select('resolution', $lang->reviewissue->resolutionList, '', 'class="form-control"');?>
  28. </td>
  29. </tr>
  30. <tr>
  31. <th></th>
  32. <td>
  33. <?php echo html::submitButton('');?>
  34. </td>
  35. </tr>
  36. </table>
  37. </form>
  38. </div>
  39. </div>
  40. <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>