2023-05-16 10:50:42 +08:00

49 lines
2.0 KiB
PHP

<?php
/**
* The close of process module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 禅道软件(青岛)有限公司(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 Jia Fu <fujia@cnezsoft.com>
* @package process
* @version $Id: complete.html.php 935 2010-07-06 07:49:24Z jajacn@126.com $
* @link http://www.zentao.net
*/
?>
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
<?php include $app->getModuleRoot() . 'common/view/kindeditor.html.php';?>
<div class="main-content" id="mainContent">
<div class="main-header">
<strong><?php echo $lang->process->edit;?></strong>
</div>
<form method="post" class="main-form form-ajax" id="processForm">
<table class="table table-form">
<tbody>
<tr>
<th><?php echo $lang->process->name;?></th>
<td class="required" colspan="2"><?php echo html::input('name', $process->name, 'class="form-control"');?></td>
<td></td>
</tr>
<tr>
<th><?php echo $lang->process->type;?></th>
<td colspan="2"><?php echo html::select('type', $lang->process->$classify, $process->type, 'class="form-control chosen"');?></td>
</tr>
<tr>
<th><?php echo $lang->process->abbr;?></th>
<td colspan="2"><?php echo html::input('abbr', $process->abbr, 'class="form-control"');?></td>
</tr>
<tr>
<th><?php echo $lang->process->desc;?></th>
<td colspan="2"><?php echo html::textarea('desc', $process->desc, 'row="3"');?></td>
</tr>
<tr>
<th></th>
<td colspan='2' class='text-center form-actions'><?php echo html::submitButton() . html::backButton();?></td>
<?php echo html::hidden('model', $process->model);?>
</tr>
</tbody>
</table>
</form>
</div>
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>