47 lines
1.7 KiB
PHP
47 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* The browse view file of release 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 Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package release
|
|
* @version $Id: browse.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include $app->getModuleRoot() . 'common/view/header.html.php';?>
|
|
<div id='mainContent' class='main-content'>
|
|
<div class='center-block'>
|
|
<div class='main-header'>
|
|
<h2>
|
|
<?php echo $lang->approvalflow->edit;?>
|
|
</h2>
|
|
</div>
|
|
<form class='form-ajax' method='post'>
|
|
<table class="table table-form">
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->approvalflow->type;?></th>
|
|
<td><?php echo html::select('type', $lang->approvalflow->typeList, $flow->type, "class='form-control chosen'");?></td>
|
|
<td></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->approvalflow->name;?></th>
|
|
<td class='required'><?php echo html::input('name', $flow->name, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->approvalflow->desc;?></th>
|
|
<td colspan='2'><?php echo html::textarea('desc', $flow->desc, "class='form-control' rows=5");?></td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan='3' class='form-actions text-center'>
|
|
<?php echo html::submitButton();?>
|
|
<?php echo html::backButton();?>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<?php include $app->getModuleRoot() . 'common/view/footer.html.php';?>
|