creation de ListReport

This commit is contained in:
Jialin Wang
2008-02-05 14:30:57 +00:00
parent a3f682847a
commit 5782eca2b2
4 changed files with 95 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<H2><fmt:message key="report.headPage"/></H2>
<c:forEach items="${listReport}" var="report">
<table>
<tr>
<td>
<fmt:message key="report.referee"/>: ${report.referee}
</td>
</tr>
<tr>
<td><fmt:message key="evaluation.titleArticle"/></td>
<td><c:out value="${report.article.title}"/></td>
</tr>
<c:forEach items="${report.ratings}" var="rating" varStatus="j">
<tr>
<td><fmt:message key="evaluation.note"/> </td>
<td>${rating.criterion.name} is: </td>
<td>${rating.value}</td>
</tr>
</c:forEach>
<tr>
<td><fmt:message key="evaluation.commentPCMember"/></td>
<td><c:out value="${report.commentPCMember}"/></td>
</tr>
<tr>
<td><fmt:message key="evaluation.commentAuthor"/></td>
<td><c:out value="${report.commentAuthor}"/></td>
</tr>
</table>
<hr>
</c:forEach>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>