Corrections diverses
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
<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.
|
||||
Choose whether you want to validate an article (i.e. the article will be featured in the conference) or reject it.
|
||||
</p>
|
||||
|
||||
<c:forEach items="${listArticleValidate}" var="article">
|
||||
@@ -17,11 +17,27 @@
|
||||
<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>
|
||||
<td colspan="2">
|
||||
<c:choose>
|
||||
<c:when test="${article.state != 'REJECTED' and article.state != 'ACCEPTED'}">
|
||||
<a href="<c:url value="validateOrReject.htm?value=valide&id=${article.id}"/>"
|
||||
onclick="return confirm('You are about to validate this article. This operation cannot be undone. Do you want to continue ?')">
|
||||
<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}"/>"
|
||||
onclick="return confirm('You are about to reject this article. This operation cannot be undone. Do you want to continue ?')">
|
||||
<fmt:message key="validate.reject" /><img src="./images/cancel.png" alt="Reject" /></a>
|
||||
</c:when>
|
||||
<c:otherwise>
|
||||
<c:if test="${article.state == 'REJECTED'}">
|
||||
<img src="./images/cancel.png" alt="Rejected" />
|
||||
</c:if>
|
||||
<c:if test="${article.state == 'ACCEPTED'}">
|
||||
<img src="./images/ok.png" alt="Validated" />
|
||||
</c:if>
|
||||
State: ${article.state}
|
||||
</c:otherwise>
|
||||
</c:choose>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><a title="Download" href="<c:url value="/download.htm"><c:param name="articleId" value="${article.id}"/></c:url>">Download<img
|
||||
|
||||
Reference in New Issue
Block a user