creation du rapport

This commit is contained in:
Jialin Wang
2008-01-21 23:45:53 +00:00
parent 0f6cb26ad1
commit 83b0a4ab7c

View File

@@ -4,8 +4,34 @@
<head></head> <head></head>
<body> <body>
<H2>succeed in evaluation</H2> <H2><fmt:message key="evaluation.headPage"/></H2>
<table>
<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>
<a href="<c:url value="main.htm"/>">Home</a>
</body> </body>
</html> </html>