📄 groupmag.jsp
字号:
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
<%@ include file="/app/inc/taglibs2.jsp"%>
<html:html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title><bean:message key="admin.left.groupmag"/></title>
<script language="JavaScript" type="text/javascript">
<!--
function confirmDelete()
{
return con = confirm("删除用户组后,该组用户不会删除,但其所属用户将可能发生异常,确定要删除该用户组吗?");
}
//-->
</script>
</head>
<body>
<table class="tab1" align="center" width="780px" cellSpacing="0" cellPadding="0" >
<tr><td width="20%" valign="top"><%@ include file="adminleft.jsp"%></td>
<td valign="top" width="80%" class="td_l"><br><br><br><br>
<table class="tab1" align="center" width="85%" cellSpacing="0" cellPadding="0" >
<tr class="tr_1"><td align="center" height="28px" colspan="6"><bean:message key="admin.left.groupmag"/></td></tr>
<tr align="center" height="25px" >
<td width="10%" class="td_t"><bean:message key="admin.all.id"/></td>
<td width="15%" class="td_lt"><bean:message key="admin.addgroup.name"/></td>
<td width="35%" class="td_lt"><bean:message key="admin.addgroup.about"/></td>
<td width="15%" class="td_lt"><bean:message key="admin.groupmag.addby"/></td>
<td width="25%" colspan="2" align="center" class="td_lt"><bean:message key="admin.all.operation"/></td>
</tr>
<logic:notPresent name="gList">
<tr align="center" height="20px"><td class="td_b" colspan="6"><bean:message key="admin.groupmag.nogroup"/></td></tr>
</logic:notPresent>
<logic:iterate id="group" name="gList" scope="request">
<tr align="center" height="20px">
<td class="td_t"><bean:write name="group" property="id"/></td>
<td class="td_lt"><bean:write name="group" property="name"/> </td>
<td class="td_lt"><bean:write name="group" property="about"/> </td>
<td class="td_lt"><bean:write name="group" property="addby"/> </td>
<td class="td_lt" align="center" >
<a href='GroupMag.html?action=update&gId=<bean:write name="group" property="id" />'>
<bean:message key="admin.all.update"/>
</a>
</td>
<td align="center" class="td_lt">
<a href='GroupMag.html?action=delete&gId=<bean:write name="group" property="id" />' onclick="return confirmDelete()" >
<bean:message key="admin.all.delete"/>
</a>
</td>
</tr>
</logic:iterate>
</table>
</td>
</tr>
<tr>
<td><font color="red"><html:errors/></font></td>
</tr>
</table>
</body>
</html:html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -