| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * The close view file of story module of ZenTaoPMS.
- *
- * @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
- * @license ZPL(http://zpl.pub/page/zplv12.html) or AGPL(https://www.gnu.org/licenses/agpl-3.0.en.html)
- * @author Chunsheng Wang <chunsheng@cnezsoft.com>
- * @package story
- * @version $Id: close.html.php 4129 2013-01-18 01:58:14Z wwccss $
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <div id='mainContent' class='main-content'>
- <div class='center-block'>
- <div class='main-header'>
- <h2>
- <span class='label label-id'><?php echo $issueID;?></span>
- <span title="<?php echo $issue->title;?>"><?php echo $issue->title;?></span>
- </h2>
- </div>
- <form method='post' target='hiddenwin'>
- <table class='table table-form'>
- <tr>
- <th class='thWidth'><?php echo $lang->reviewissue->resolution;?></th>
- <td class='required'>
- <?php echo html::select('resolution', $lang->reviewissue->resolutionList, '', 'class="form-control"');?>
- </td>
- </tr>
- <tr>
- <th></th>
- <td>
- <?php echo html::submitButton('');?>
- </td>
- </tr>
- </table>
- </form>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|