This commit is contained in:
Jialin Wang
2007-12-14 19:10:12 +00:00
parent b218b1d0ca
commit 0111490535

View File

@@ -0,0 +1,36 @@
<%@ include file="/WEB-INF/jsp/include.jsp"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<html>
<head>
<title><fmt:message key="title" /></title>
</head>
<body>
<h2 align="center"><fmt:message key="submission.title" /></h2>
<c:if test="${requestScope['articleList']!=null}">
<table>
<c:forEach items="${requestScope['articleList']} " var="article">
<tr>
<td><a href="<c:url value="detailArticle.htm"/>">${article.title}</a></td>
<td><fmt:message key="prefence.like"/></td>
<td><input type="radio" value="<fmt:message key="prefence.like">" name="preference" id="A" /> </td>
<td><fmt:message key="prefence.indifferent"/></td>
<td><input type="radio" value="<fmt:message key="prefence.indifferent">" name="preference" id="B" checked="checked" /> </td>
<td><fmt:message key="prefence.dislike"/></td>
<td><input type="radio" value="<fmt:message key="prefence.dislike">" name="preference" id="C" /> </td>
</tr>
</c:forEach>
</table>
</c:if>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>