44 lines
1.8 KiB
PHP
44 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* The activate of nc module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2020 禅道软件(青岛)有限公司(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 Hucheng Tang <tanghucheng@cnezsoft.com>
|
|
* @package nc
|
|
* @version $Id: activate.html.php 4903 2020-09-04 09:11:59Z lyc $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . "common/view/header.html.php";?>
|
|
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<span class='prefix label-id'><strong><?php echo $nc->id;?></strong></span>
|
|
<?php echo "<span title='$nc->title'>" . $nc->title . '</span>';?>
|
|
</h2>
|
|
</div>
|
|
<div class="modal-body" style="min-height: 282px; overflow: auto;">
|
|
<form class='load-indicator main-form' method='post' target='hiddenwin'>
|
|
<table class='table table-form'>
|
|
<tbody>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->nc->assignedTo;?></th>
|
|
<td><?php echo html::select('assignedTo', $users, $this->app->user->account, "class='form-control chosen'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->comment;?></th>
|
|
<td colspan='2'><?php echo html::textarea('comment', '', "rows='6' class='form-control kindeditor' hidefocus='true'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td class='text-center form-actions' colspan='3'><?php echo html::submitButton(); ?></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . "common/view/footer.html.php";?>
|