96 lines
4.1 KiB
PHP
96 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* The create 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 '../../common/view/header.modal.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/datepicker.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/chosen.html.php';?>
|
|
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<?php if(!helper::isAjaxRequest()):?>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->deploy->create;?></h2>
|
|
</div>
|
|
<?php endif;?>
|
|
<form class='load-indicator main-form' method='post' target='hiddenwin' action='<?php echo inlink('create', "product=$product")?>'>
|
|
<table class='table table-form'>
|
|
<tr>
|
|
<th><?php echo $lang->deploy->name;?></th>
|
|
<td colspan='2'>
|
|
<?php echo html::input('name', '', "class='form-control' autocomplete='off'");?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->deploy->desc;?></th>
|
|
<td colspan='2'><?php echo html::textarea('desc', '', "rows='10' class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->deploy->owner;?></th>
|
|
<td class='w-p30'>
|
|
<?php echo html::select('owner', $users, '', "class='form-control chosen'");?>
|
|
</td><td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->deploy->lblBeginEnd;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input('begin', '', "class='form-control form-datetime' placeholder='{$lang->deploy->begin}' data-picker-position='top-right'");?>
|
|
<span class='input-group-addon fix-border'>~</span>
|
|
<?php echo html::input('end', '', "class='form-control form-datetime' placeholder='{$lang->deploy->end}' data-picker-position='top-right'");?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->deploy->members;?></th>
|
|
<td colspan='2'><?php echo html::select('members[]', $users, '', "class='form-control chosen' multiple");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->deploy->lblProduct;?></th>
|
|
<td colspan='2'>
|
|
<div class='table-row'>
|
|
<div class='table-col productCol'>
|
|
<div class='input-group'>
|
|
<span class='input-group-addon'><?php echo $lang->deploy->product?></span>
|
|
<?php echo html::select('product[]', $products, $product, "class='form-control chosen' onchange='loadRelease(this)'");?>
|
|
</div>
|
|
</div>
|
|
<div class='table-col releaseCol'>
|
|
<div class='input-group'>
|
|
<span class='input-group-addon'><?php echo $lang->deploy->release?></span>
|
|
<?php echo html::select('release[]', $releases, '', "class='form-control chosen'");?>
|
|
</div>
|
|
</div>
|
|
<div class='table-col packageCol'>
|
|
<div class='input-group w-p100'>
|
|
<span class='input-group-addon'><?php echo $lang->deploy->package?></span>
|
|
<?php echo html::input('package[]', '', "class='form-control'");?>
|
|
</div>
|
|
</div>
|
|
<div class='table-col actionCol'>
|
|
<div class='btn-group'>
|
|
<?php echo html::commonButton("<i class='icon icon-plus'></i>", "onclick='addItem(this)'");?>
|
|
<?php echo html::commonButton("<i class='icon icon-close'></i>", "onclick='removeItem(this)'");?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='3' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton();?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include '../../common/view/footer.modal.html.php';?>
|