Correction générale
This commit is contained in:
@@ -8,18 +8,24 @@
|
||||
<h4 class="title">Article's details</h4>
|
||||
|
||||
|
||||
<div id="account_data">
|
||||
<h2>${article.title}</h2>
|
||||
<div id="account_data">
|
||||
<p class="legend">Title</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>Title: </label>
|
||||
<span class="content"><b>${article.title}</b></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">Authors</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>Principal Author :</label>
|
||||
<label>Main Author:</label>
|
||||
<span class="content"><b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></span>
|
||||
</div>
|
||||
<c:if test="${article.secondaryAuthors!=null}">
|
||||
<c:if test="${not empty article.secondaryAuthors}">
|
||||
<div>
|
||||
<label>Secondary Authors : </label>
|
||||
<label>Secondary Authors: </label>
|
||||
<ul>
|
||||
<c:forEach items="${article.secondaryAuthors}" var="sAuthor">
|
||||
<li>${sAuthor}</li>
|
||||
@@ -30,15 +36,25 @@
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">Topic</p>
|
||||
<fieldset>
|
||||
<label>Topic : </label>
|
||||
<span class="content"><b>${article.topic}</b></span>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>Topic: </label>
|
||||
<span class="content"><b>${article.topic}</b></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">Abstract</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>Abstract: </label>
|
||||
<span class="content"><b>${article.abstractText}</b></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">State</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>State of article : </label>
|
||||
<label>State of article: </label>
|
||||
<span class="content"><b>${article.state}</b></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
@@ -48,7 +64,9 @@
|
||||
<a class="download" href="
|
||||
<c:url value="/download.htm">
|
||||
<c:param name="articleId" value="${article.id}"/>
|
||||
</c:url>">Download</a>
|
||||
</c:url>">Download</a><br /><br />
|
||||
<a class="back_link" href="<c:url value="${whereIcome}"/>"><fmt:message
|
||||
key="form.link.back" /></a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user