94 lines
3.9 KiB
PHP
94 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* The create view of release module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package release
|
|
* @version $Id: create.html.php 4728 2013-05-03 06:14:34Z chencongzhi520@gmail.com $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<?php js::set('confirmLink', $confirmLink);?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2><?php echo $lang->release->create;?></h2>
|
|
</div>
|
|
<form class='load-indicator main-form form-ajax' id='dataform' method='post' enctype='multipart/form-data'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<tr>
|
|
<th><?php echo $lang->release->name;?></th>
|
|
<td><?php echo html::input('name', '', "class='form-control' required");?></td>
|
|
<td class='muted'>
|
|
<div class='checkbox-primary'>
|
|
<input id='marker' name='marker' value='1' type='checkbox' />
|
|
<label for='marker'><?php echo $lang->release->marker;?></label>
|
|
</div>
|
|
<?php if($lastRelease) echo '(' . $lang->release->last . ': ' . $lastRelease->name . ')';?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->release->build;?></th>
|
|
<td><?php echo html::select('build', $builds, '', "onchange='showProducts(this.value)' class='form-control chosen'");?></td><td></td>
|
|
</tr>
|
|
<tr id='productBox'>
|
|
<th><?php echo $lang->release->product;?></th>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::select('product', $products, '', "onchange='loadBranches(this.value)' class='form-control chosen'");?>
|
|
<?php if($product->type != 'normal') echo html::select('branch', $branches, $branch, "class='form-control chosen control-branch'");?>
|
|
</div>
|
|
</td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->release->date;?></th>
|
|
<td><?php echo html::input('date', helper::today(), "class='form-control form-date' required");?></td><td></td>
|
|
</tr>
|
|
<tr class='hide'>
|
|
<th><?php echo $lang->release->status;?></th>
|
|
<td><?php echo html::hidden('status', 'normal', "disabled");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<?php $this->printExtendFields('', 'table');?>
|
|
<tr>
|
|
<th><?php echo $lang->release->desc;?></th>
|
|
<td colspan='2'><?php echo html::textarea('desc', '', "rows='10' class='form-control kindeditor' hidefocus='true'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->release->mailto;?></th>
|
|
<td colspan='2'>
|
|
<div class="input-group">
|
|
<?php echo html::select('mailto[]', $users, '', "class='form-control chosen' data-placeholder='{$lang->chooseUsersToMail}' multiple");?>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->files;?></th>
|
|
<td colspan='2'><?php echo $this->fetch('file', 'buildform');?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='3' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::hidden('sync', 'false');?>
|
|
<?php echo html::backButton();?>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
$(function()
|
|
{
|
|
$(".form-date").datetimepicker('setEndDate', '<?php echo date(DT_DATE1)?>');
|
|
});
|
|
</script>
|
|
<?php include '../../common/view/footer.html.php';?>
|