28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
/**
|
|
* The edit view of group module of XXB.
|
|
*
|
|
* @copyright Copyright 2009-2023 禅道软件(青岛)有限公司(ZenTao Software (Qingdao) Co., Ltd., www.zentao.net)
|
|
* @license ZOSL (https://zpl.pub/page/zoslv1.html)
|
|
* @author Xiying Guan <guanxiying@xirangit.com>
|
|
* @package group
|
|
* @version $Id: edit.html.php 4129 2013-01-18 01:58:14Z wwccss $
|
|
* @link https://xuanim.com
|
|
*/
|
|
?>
|
|
<?php include '../../common/view/header.modal.html.php';?>
|
|
<form method='post' id='ajaxForm' action='<?php echo inlink('edit', "id={$group->id}");?>'>
|
|
<table align='center' class='table table-form'>
|
|
<tr>
|
|
<th class='w-100px'><?php echo $lang->group->name;?></th>
|
|
<td><?php echo html::input('name', $group->name, "class='form-control'");?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?php echo $lang->group->desc;?></th>
|
|
<td><?php echo html::textarea('desc', $group->desc, "rows='5' class='form-control'");?></td>
|
|
</tr>
|
|
<tr><td colspan='2' class='text-center'><?php echo html::submitButton();?></td></tr>
|
|
</table>
|
|
</form>
|
|
<?php include '../../common/view/footer.modal.html.php';?>
|