48 lines
1.8 KiB
PHP
48 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* The hangup of risk module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2020 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
|
|
* @license ZPL (http://zpl.pub/page/zplv12.html)
|
|
* @author Yuchun Li <liyuchun@cnezsoft.com>
|
|
* @package risk
|
|
* @version $Id: hangup.html.php 4903 2020-09-04 09:32:59Z lyc $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include "../../common/view/header.html.php";?>
|
|
<?php include '../../common/view/kindeditor.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<span class='prefix label-id'><strong><?php echo $risk->id;?></strong></span>
|
|
<?php echo "<span title='$risk->name'>" . $risk->name . '</span>';?>
|
|
</h2>
|
|
</div>
|
|
<form class='load-indicator main-form' method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->risk->hangupBy;?></th>
|
|
<td><?php echo html::select('hangupBy', $users, $this->app->user->account, "class='form-control chosen'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->risk->hangupDate;?></th>
|
|
<td><?php echo html::input('hangupDate', helper::today(), "class='form-control form-date'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->risk->assignedTo;?></th>
|
|
<td><?php echo html::select('assignedTo', $users, $risk->assignedTo, "class='form-control chosen'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<?php include "../../common/view/footer.html.php";?>
|
|
|