| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * The finish file of execution 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<wwccss@gmail.com>
- * @package execution
- * @version $Id: finish.html.php 935 2013-01-16 07:49:24Z wwccss@gmail.com $
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
- <div id='mainContent' class='main-content'>
- <div class='main-header'>
- <h2>
- <span class='prefix label-id'><strong><?php echo $execution->id;?></strong></span>
- <?php echo isonlybody() ? ("<span title='$execution->name'>" . $execution->name . '</span>') : html::a($this->createLink('execution', 'view', 'executionID=' . $execution->id), $execution->name, '_blank');?>
- <?php if(!isonlybody()):?>
- <small><?php echo $lang->arrow . $lang->execution->finish;?></small>
- <?php endif;?>
- </h2>
- </div>
- <form class='load-indicator main-form' method='post' target='hiddenwin'>
- <table class='table table-form'>
- <tbody>
- <?php $this->printExtendFields($execution, 'table', 'columns=2');?>
- <tr>
- <th class='w-40px'><?php echo $lang->comment;?></th>
- <td><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
- </tr>
- <tr>
- <td colspan='2' class='text-center form-actions'><?php echo html::submitButton($lang->execution->finish) . ' ' . html::linkButton($lang->goback, $this->session->taskList, 'self', '', 'btn btn-wide'); ?></td>
- </tr>
- </tbody>
- </table>
- </form>
- <hr class='small' />
- <div class='main'>
- <?php include $app->getModuleRoot() . 'common/view/action.html.php';?>
- </div>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|