my_debate.jsp
来自「论坛软件系统亦称电子公告板(BBS)系统」· JSP 代码 · 共 16 行
JSP
16 行
<%@ page language="java" pageEncoding="UTF-8"%>
<%@ taglib uri="/WEB-INF/c.tld" prefix="c"%>
<h1>我的辩论</h1>
<ul class="tabs headertabs"><li ${type== 'orig'?"class='current'":""}><a href="my.jsp?item=debate&type=orig${extrafid}">我发起的辩论</a></li><li ${type== 'apply'?"class='current'":""}><a href="my.jsp?item=debate&type=apply${extrafid}">我参与的辩论</a></li></ul>
<table cellspacing="0" cellpadding="0" width="100%">
<thead><tr><td>所在主题</td><td>版块</td><td class="time">${type=='orig'?"最后发表":"辩论日期"}</td><td>状态</td></tr></thead>
<tbody>
<c:forEach items="${debatelists}" var="debatelist"><tr>
<td><c:choose><c:when test="${viewthreadurl}"><a href="thread-${debatelist.tid}-1-1.html" target="_blank">${debatelist.subject}</a></c:when><c:otherwise><a href="viewthread.jsp?tid=${debatelist.tid}" target="_blank">${debatelist.subject}</a></c:otherwise></c:choose></td>
<td><c:choose><c:when test="${forumdisplayurl}"><a href="forum-${debatelist.fid}-1.html" target="_blank">${debatelist.name}</a></c:when><c:otherwise><a href="forumdisplay.jsp?fid=${debatelist.fid}" target="_blank">${debatelist.name}</a></c:otherwise></c:choose></td>
<td><em><c:choose><c:when test="${type=='orig'}"> <a href="redirect.jsp?tid=${debatelist.tid}&goto=lastpost#lastpost" target="_blank">${debatelist.lastpost}</a><br />by <c:choose><c:when test="${debatelist.lastposter!=''}"><c:choose><c:when test="${spaceurlurl}"><a href="space-username-${debatelist.lastposterenc}.html" target="_blank">${debatelist.lastposter}</a></c:when><c:otherwise><a href="space.jsp?username=${debatelist.lastposterenc}" target="_blank">${debatelist.lastposter}</a></c:otherwise></c:choose></c:when><c:otherwise>匿名</c:otherwise></c:choose></c:when><c:otherwise>${debatelist.dateline}</c:otherwise></c:choose></em></td>
<td><c:choose><c:when test="${debatelist.displayorder==-1}">回收站</c:when><c:when test="${debatelist.displayorder==-2}">待审核</c:when><c:when test="${debatelist.close>=1}">关闭</c:when><c:otherwise>正常</c:otherwise></c:choose></td>
</tr></c:forEach>
<c:if test="${empty debatelists}"><tr><td colspan="4">本版块或指定的范围内尚无主题。</td></tr></c:if>
</tbody>
</table>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?