This commit is contained in:
36
YACOSWeb/WebContent/WEB-INF/jsp/choosePreference.jsp
Normal file
36
YACOSWeb/WebContent/WEB-INF/jsp/choosePreference.jsp
Normal 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>
|
||||||
Reference in New Issue
Block a user