Modification de trop de choses pr tt dire ici...

This commit is contained in:
Frederic Debuire
2008-02-23 16:42:03 +00:00
parent 25c6db06a2
commit a4fe4842df
14 changed files with 408 additions and 251 deletions

View File

@@ -1,37 +1,37 @@
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title"><fmt:message key="evaluation.headPage" /></h4>
<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>
</html>
<h4 class="title"><fmt:message key="evaluation.headPage" /></h4>
<table>
<tr>
<td><fmt:message key="evaluation.titleArticle" /></td>
<td>${report.article.title}</td>
</tr>
<c:forEach items="${report.ratings}" var="rating">
<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>${report.commentPCMember}</td>
</tr>
<tr>
<td><fmt:message key="evaluation.commentAuthor" /></td>
<td>${report.commentAuthor}</td>
</tr>
</table>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>