Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/createReport.jsp
Frederic Debuire 0f4e1c1fa0 Ajout d'un menu main avec l'userBoard et les infos de la conf.
Ajout d'un bouton back lors d'une évaluation
2008-02-23 22:00:43 +00:00

49 lines
1022 B
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title"><fmt:message key="evaluation.headPage" /></h4>
<p class="formOk">
You have successfully evaluated the article.<br/>
You can modify your evaluation immediately or later.<br/>
</p>
<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>
<tr>
<td colspan="2">
<a class="back_link" href="<c:url value="${whereIcome}"/>">Modify the evaluation</a>
</td>
</tr>
</table>
</body>
</html>