|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=<?php echo $cfg_soft_lang; ?>">
- <title>系统用户组管理</title>
- <link rel="stylesheet" href="../static/css/bootstrap.min.css">
- <link href="../static/font-awesome/css/font-awesome.min.css" rel="stylesheet">
- <link href="css/base.css" rel="stylesheet" type="text/css">
- </head>
- <body background='images/allbg.gif' leftmargin='8' topmargin='8'>
- <table width="98%" border="0" cellpadding="3" cellspacing="1" bgcolor="#D6D6D6" align="center" class="table maintable table-bordered mt-3">
- <form name="form1" action="content_att.php" method="post">
- <input type="hidden" name="dopost" value="save">
- <tr>
- <td height="26" colspan="3" background='images/tbg.gif'>
- <table width="96%" border="0" cellspacing="1" cellpadding="1" class="table table-borderless">
- <tr>
- <td width="24%" style="padding-left:10px"><b>系统用户组管理</b> </td>
- <td width="76%" align="right"><b>
- <a href="sys_group_add.php" class="btn btn-success">增加一个用户组</a>
- <a href="sys_admin_user.php" class="btn btn-success">管理系统用户</a>
- </b>
- </td>
- </tr>
- </table>
- </td>
- </tr>
- <tr bgcolor="#FBFCE2" align="center">
- <td width="20%" height="26">Rank</td>
- <td width="45%">组名称</td>
- <td width="35%">管理</td>
- </tr>
- <?php
- $dsql->SetQuery("Select `rank`,typename,`system` From #@__admintype");
- $dsql->Execute();
- while($row = $dsql->GetObject())
- {
- ?>
- <tr align="center" bgcolor="#FFFFFF">
- <td height="26">
- <?php echo $row->rank?>
- </td>
- <td height="26">
- <?php echo $row->typename?>
- </td>
- <td>
- <a href='sys_group_edit.php?rank=<?php echo $row->rank?>' class="btn btn-success btn-sm">权限设定</a>
- <a href='sys_admin_user.php?rank=<?php echo $row->rank?>' class="btn btn-success btn-sm">组用户</a>
- <?php if($row->system==0){ ?><a
- href='sys_group_edit.php?dopost=del&rank=<?php echo $row->rank; ?>'>[删除组]</a><?php } ?>
- </td>
- </tr>
- <?php
- }
- ?>
- <tr>
- <td height="26" colspan="3" bgcolor="#F9FCEF"> </td>
- </tr>
- </form>
- </table>
- </body>
-
- </html>
|