Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/validateArticle.jsp
Frederic Debuire 25c6db06a2 Modification de la validation : mise en page et test d'erreur
Modification de l'évaluation : mise en page, ajout d'image pour chaque état de l'article.
2008-02-22 23:06:05 +00:00

38 lines
1.4 KiB
Plaintext

<%@ include file="/WEB-INF/decorators/include.jsp"%>
<html>
<head></head>
<body>
<h4 class="title">Validate an article</h4>
<p class="formHelp">
Choose whether you want to validate an article (i.e. the article will take part in the conference) or reject it.
</p>
<c:forEach items="${listArticleValidate}" var="article">
<div style="border: 1px solid orange;">
<table style="width: 100%; text-align: center;">
<tr>
<td><b>${article.title}</b></td>
<td>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</td>
</tr>
<tr>
<td colspan="2">State: ${article.state}
<a href="<c:url value="validateOrReject.htm?value=valide&id=${article.id}"/>">
<fmt:message key="validate.validate" /><img src="./images/ok.png" alt="Validate" /></a>
<a href="<c:url value="validateOrReject.htm?value=reject&id=${article.id}"/>">
<fmt:message key="validate.reject" /><img src="./images/cancel.png" alt="Reject" /></a></td>
</tr>
<tr>
<td><a title="Download" href="<c:url value="/download.htm"><c:param name="articleId" value="${article.id}"/></c:url>">Download<img
src="./images/cc-download_manager-32x32.png" alt="Download" /></a></td>
<td><a href="<c:url value="listReport.htm?id=${article.id}"/>"><fmt:message key="validate.report" /></a></td>
</tr>
</table>
</div>
</c:forEach>
<a href="<c:url value="main.htm"/>">Home</a>
</body>
</html>