29 lines
1.2 KiB
PHP
29 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* The edit view of group module of ZenTaoPMS.
|
|
*
|
|
* @copyright Copyright 2009-2013 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
|
|
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
|
|
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
|
|
* @package group
|
|
* @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link http://www.zentao.net
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.html.php';?>
|
|
<form method='post' target='hiddenwin' id='dataform'>
|
|
<table align='center' class='table-4'>
|
|
<caption><?php echo $lang->group->edit;?></caption>
|
|
<tr>
|
|
<th class='rowhead'><?php echo $lang->group->name;?></th>
|
|
<td><?php echo html::input('name', $group->name, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th class='rowhead'><?php echo $lang->group->desc;?></th>
|
|
<td><?php echo html::textarea('desc', $group->desc, "rows='5' class='area-1'");?></td>
|
|
</tr>
|
|
<tr><td colspan='2' class='text-center'><?php echo html::submitButton();?></td></tr>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.html.php';?>
|