⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 viewthread_mod.jsp

📁 论坛软件系统亦称电子公告板(BBS)系统
💻 JSP
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@ taglib uri="/WEB-INF/jrun-tag.tld" prefix="jrun"%>
<jsp:include flush="true" page="header.jsp" />
<script src="include/javascript/viewthread.js" type="text/javascript"></script>
<div id="nav"><a href="${settings.indexname}">${settings.bbname}</a> &raquo; ${navigation} &raquo; 主题操作记录</div>
<div class="mainbox">
	<h1>主题操作记录</h1>
	<table summary="主题操作记录" cellspacing="0" cellpadding="0">
		<thead>
			<tr>
				<td>操作者</td>
				<td class="time">时间</td>
				<td>操作</td>
				<td class="time">有效期</td>
			</tr>
		</thead>
		<c:forEach items="${modlist}" var="mods">
			<tr>
				<td><c:choose><c:when test="${mods.id.uid!=''}"><a href="space.jsp?uid=${mods.id.uid}" target="_blank">${mods.id.username}</a></c:when><c:otherwise>任务系统</c:otherwise></c:choose></td>
				<td class="time"><jrun:showTime timeInt="${mods.id.dateline}" type="${dateformat} ${timeformat}" timeoffset="${timeoffset}"/></td>
				<td <c:if test="${mods.id.status==0}">style="text-decoration: line-through" disabled</c:if>> <bean:message key="${mods.id.action}"/> </td>
				<td class="time" <c:if test="${mods.id.status==0}">style="text-decoration: line-through" disabled</c:if>><c:choose><c:when test="${mods.id.expiration!=''}"><jrun:showTime timeInt="${mods.id.expiration}" type="${dateformat}" timeoffset="${timeoffset}"/></c:when><c:when test="${mods.id.action=='STK'||mods.id.action=='HLT'||mods.id.action=='DIG'||mods.id.action=='CLS'||mods.id.action=='OPN'}">永久有效</c:when></c:choose></td>
			</tr>
		</c:forEach>
	</table>
</div>
<jsp:include flush="true" page="footer.jsp" />

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -