Correction d'un bug dans evaluation
+ Modif diverses
This commit is contained in:
@@ -1,32 +1,33 @@
|
||||
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
||||
<html>
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
|
||||
<title><fmt:message key="detail.title"/></title>
|
||||
</head>
|
||||
<body>
|
||||
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
||||
|
||||
<div class="article cb">
|
||||
<h2>${article.title}</h2>
|
||||
<p class="author">Author: <b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></p>
|
||||
<c:if test="${article.secondaryAuthors!=null}">
|
||||
<p class="secondaryAuthors">
|
||||
Secondary Authors:
|
||||
<ul>
|
||||
<c:forEach items="${article.secondaryAuthors}" var="sAuthor">
|
||||
<li>${sAuthor}</li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
</c:if>
|
||||
|
||||
<p class="topic">Topic: <b>${article.topic}</b></p>
|
||||
<p class="topic">State of article: <b>${article.state}</b></p>
|
||||
<p class="article_url"><a href="
|
||||
<html>
|
||||
<head>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h4 class="title">Article's details</h4>
|
||||
|
||||
<div class="article cbb">
|
||||
<h2>${article.title}</h2>
|
||||
<p class="author">Author: <b>${article.mainAuthor.firstName}
|
||||
${article.mainAuthor.lastName}</b></p>
|
||||
<c:if test="${article.secondaryAuthors!=null}">
|
||||
<p class="secondaryAuthors">Secondary Authors:
|
||||
<ul>
|
||||
<c:forEach items="${article.secondaryAuthors}" var="sAuthor">
|
||||
<li>${sAuthor}</li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
</c:if>
|
||||
|
||||
<p class="topic">Topic: <b>${article.topic}</b></p>
|
||||
<p class="topic">State of article: <b>${article.state}</b></p>
|
||||
<p class="article_url"><a
|
||||
href="
|
||||
<c:url value="/download.htm">
|
||||
<c:param name="articleId" value="${article.id}"/>
|
||||
</c:url>">Download the article</a>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</c:url>">Download</a></p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user