📄 usergrade.jsp
字号:
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>用户等级管理</title>
<style type="text/css">
.postnum{
margin-left:140px;
}
</style>
</head><body>
<table class="rtab" cellSpacing=0 cellPadding=0 width=100%>
<tr><td width="20%"><%@include file="left.jsp"%></td>
<td width="80%" valign="top" class="td_t"><p> </p>
<div class="r_title">用户等级设置</div>
<hr size="1">
<span class="list">
<div>系统有如下等级,当用户发帖数量达到等级要求后,用户就会升级。<br>
<b>系统默认:版主-15级、区版主-16级、总版主-17级、坛主-18级。</b>
</div>
<form action="../admin/userGrade.do" method="post">
<div>
<table cellSpacing=0 cellPadding=1>
<tr><td>等级</td><td>名称</td><td>基本发贴数</td></tr>
<spring:bind path="gradeForm.glist">
<c:forEach var="grade" items="${status.value}">
<tr><td>
<input type="hidden" name="gid" value="<c:out value="${grade.gid}"/>">
等级<c:out value="${grade.gid+1}"/>
</td><td>
<input type="text" name="name" value="<c:out value="${grade.name}"/>">
</td><td>
<input type="text" name="leastpost" value="<c:out value="${grade.leastpost}"/>">
<b><c:if test="${14 eq grade.gid }">(论坛版主)</c:if>
<c:if test="${15 eq grade.gid }">(论坛区版主)</c:if>
<c:if test="${16 eq grade.gid }">(论坛总版主)</c:if>
<c:if test="${17 eq grade.gid }">(论坛坛主)</c:if></b>
</td></tr>
</c:forEach>
</spring:bind>
</table>
</div>
<div><br>
<input type="submit" value="提交">
<input type="button" onclick="javascript:history.go(-1);" value="后退">
</div>
</form>
</span>
</td>
</tr>
</table>
</body></html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -