69 lines
3.2 KiB
PHP
69 lines
3.2 KiB
PHP
<?php
|
|
/**
|
|
* The batch create view of kanban 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 Xin Zhou <zhouxin@cnezsoft.com>
|
|
* @package kanban
|
|
* @version $Id$
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<div id="mainContent" class="main-content fade">
|
|
<div class="main-header clearfix">
|
|
<h2 class="pull-left">
|
|
<?php echo $lang->kanban->batchCreateCard;?>
|
|
</h2>
|
|
</div>
|
|
<form method='post' class='load-indicator batch-actions-form form-ajax' enctype='multipart/form-data' id="batchCreateCardForm">
|
|
<div class="table-responsive">
|
|
<table class="table table-form">
|
|
<thead>
|
|
<tr>
|
|
<th class='c-id text-center'><?php echo $lang->idAB;?></th>
|
|
<th class='c-name required'><?php echo $lang->kanbancard->name?></th>
|
|
<th><?php echo $lang->kanbancard->lane;?></th>
|
|
<th><?php echo $lang->kanbancard->assignedTo;?></th>
|
|
<th class='c-estimate'><?php echo $lang->kanbancard->estimate;?></th>
|
|
<th><?php echo $lang->kanbancard->beginAndEnd;?></th>
|
|
<th><?php echo $lang->kanbancard->desc;?></th>
|
|
<th class='c-pri w-120px'><?php echo $lang->kanbancard->pri;?></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php $pri = 3;?>
|
|
<?php for($i = 0; $i < $config->kanban->batchCreate; $i++):?>
|
|
<tr>
|
|
<td class='text-center'><?php echo $i + 1;?></td>
|
|
<td class='text-center'><?php echo html::input("name[$i]", '', "class='form-control title-import'");?></td>
|
|
<td style='overflow:visible'><?php echo html::select("lane[$i]", $lanePairs, key($lanePairs), "class='form-control chosen'")?></td>
|
|
<td style='overflow:visible'><?php echo html::select("assignedTo[$i][]", $users, $app->user->account, "class='form-control chosen' multiple");?></td>
|
|
<td><?php echo html::input("estimate[$i]", '', "class='form-control text-center'");?></td>
|
|
<td>
|
|
<div class='input-group'>
|
|
<?php echo html::input("begin[$i]", '', "class='form-control form-date' placeholder='{$lang->kanbancard->begin}'");?>
|
|
<span class='input-group-addon fix-border'>~</span>
|
|
<?php echo html::input("end[$i]", '', "class='form-control form-date' placeholder='{$lang->kanbancard->end}'");?>
|
|
</div>
|
|
</td>
|
|
<td ><?php echo html::textarea("desc[$i]", '', "rows='1' class='form-control autosize'");?></td>
|
|
<td ><?php echo html::select("pri[$i]", (array)$lang->kanbancard->priList, $pri, 'class=form-control');?></td>
|
|
</tr>
|
|
<?php endfor;?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<td colspan='8' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton();?>
|
|
</td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|