50 lines
1.2 KiB
Plaintext
50 lines
1.2 KiB
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>
|
|
|
|
<div id="account_data">
|
|
<p class="legend">Article</p>
|
|
<fieldset>
|
|
<div>
|
|
<label><fmt:message key="evaluation.titleArticle" /></label>
|
|
<span class="content">${report.article.title}</span>
|
|
</div>
|
|
</fieldset>
|
|
|
|
<p class="legend">Notes</p>
|
|
<fieldset>
|
|
<c:forEach items="${report.ratings}" var="rating">
|
|
<label><fmt:message key="evaluation.note" /> <b>${rating.criterion.name}</b> is : </label>
|
|
<span class="content">${rating.value}</span><br />
|
|
</c:forEach>
|
|
</fieldset>
|
|
|
|
<p class="legend">Comments</p>
|
|
<fieldset>
|
|
<div>
|
|
<label><fmt:message key="evaluation.commentPCMember" /></label>
|
|
<span class="content">${report.commentPCMember}</span>
|
|
</div>
|
|
<div>
|
|
<label><fmt:message key="evaluation.commentAuthor" /></label>
|
|
<span class="content">${report.commentAuthor}</span>
|
|
</div>
|
|
</fieldset>
|
|
|
|
|
|
</div>
|
|
|
|
<a class="back_link" href="<c:url value="${whereIcome}"/>">Modify the evaluation</a>
|
|
|
|
</body>
|
|
</html>
|