📄 topiclock.jsp
字号:
<%@page contentType="text/html"%><%@page pageEncoding="UTF-8"%><%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%><%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%><%@taglib prefix="t" uri="http://myfaces.apache.org/tomahawk"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><f:view locale="#{localeBean.locale}"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title> <h:outputText value="主题封锁及解锁"/> </title> <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/common/css/style.css"/> <link rel="stylesheet" type="text/css" href="<%=request.getContextPath()%>/bbs/css/style.css"/> </head> <body> <h:form> <h:messages globalOnly="true" showDetail="true" infoClass="infos" errorClass="errors" fatalClass="fatals"/> <h:panelGrid width="99%" columns="1" border="0" cellpadding="3" cellspacing="3" headerClass="th"> <f:facet name="header"> <h:panelGroup> <h:outputText value="贴子的解除/封锁:"/> <h:outputText value="#{bbs_topicLock.topic.title}" styleClass="colorGreen"/> </h:panelGroup> </f:facet> <h:selectOneRadio value="#{bbs_topicLock.topic.beLock}"> <f:selectItem itemValue="true" itemLabel="锁住"/> <f:selectItem itemValue="false" itemLabel="解锁"/> </h:selectOneRadio> <h:outputText value="提示:锁住贴子后用户将无法再回复该贴子, 也无法修改(除版主及管理员之外),只能够查看."styleClass="colorGray"/> <h:inputHidden value="#{bbs_topicLock.topic.num}"/> <h:commandButton value="确认操作" action="#{bbs_topicLock.displayLock}"/> </h:panelGrid> </h:form> </body></html></f:view>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -