| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * The activate step view file of deploy 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 Yidong Wang <yidong@cnezsoft.com>
- * @package deploy
- * @version $Id$
- * @link http://www.zentao.net
- */
- ?>
- <?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
- <?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
- <div id='mainContent' class='main-content'>
- <div class='main-header'>
- <h2><?php echo $step->title . $lang->hyphen . $lang->deploy->finishStep;?></h2>
- </div>
- <form method='post' target='hiddenwin'>
- <table class='table table-form'>
- <tr>
- <th class='w-80px'><?php echo $lang->deploy->assignedTo;?></th>
- <td class='w-p40'>
- <?php echo html::select('assignedTo', $users, $step->createdBy, "class='form-control chosen'")?>
- </td><td></td>
- </tr>
- <tr>
- <th><?php echo $lang->comment?></th>
- <td colspan='2'><?php echo html::textarea('comment', '', "class='form-control'")?></td>
- </tr>
- <tr>
- <td colspan='3' class='text-center form-actions'>
- <?php echo html::submitButton();?>
- </td>
- </tr>
- </table>
- </form>
- </div>
- <?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|