46 lines
1.7 KiB
PHP
46 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* The set lane file of task module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2021 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd. www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Yuchun Li <liyuchun@easycorp.ltd>
|
|
* @package kanban
|
|
* @version $Id: setlane.html.php 935 2021-10-26 16:24:24Z liyuchun@easycorp.ltd $
|
|
* @link https://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.lite.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<?php echo $lang->kanban->editLaneColor;?>
|
|
</h2>
|
|
</div>
|
|
<form class="load-indicator main-form form-ajax" method='post' target='hiddenwin'>
|
|
<table align='center' class='table table-form'>
|
|
<tr>
|
|
<th><?php echo $lang->kanban->laneColor;?></th>
|
|
<td colspan='3'>
|
|
<?php echo html::hidden('color', $lane->color, "class='form-control'");?>
|
|
<ul>
|
|
<?php foreach($config->kanban->laneColorList as $color):?>
|
|
<li>
|
|
<a href='javascript:setColor("<?php echo $color;?>");' class='cp-tile <?php echo $color == $lane->color ? 'active' : '';?>' data-color='<?php echo $color;?>' style='color: #FFF; background: <?php echo $color;?>; border-color: transparent;'></a>
|
|
</li>
|
|
<?php endforeach;?>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='4' class='text-center form-actions'>
|
|
<?php echo html::submitButton();?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include '../../common/view/footer.html.php';?>
|