report list
list article
This commit is contained in:
@@ -6,28 +6,49 @@
|
||||
<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="
|
||||
|
||||
|
||||
<div id="account_data">
|
||||
<h2>${article.title}</h2>
|
||||
|
||||
<p class="legend">Authors</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>Principal Author :</label>
|
||||
<span class="content"><b>${article.mainAuthor.firstName} ${article.mainAuthor.lastName}</b></span>
|
||||
</div>
|
||||
<c:if test="${article.secondaryAuthors!=null}">
|
||||
<div>
|
||||
<label>Secondary Authors : </label>
|
||||
<ul>
|
||||
<c:forEach items="${article.secondaryAuthors}" var="sAuthor">
|
||||
<li>${sAuthor}</li>
|
||||
</c:forEach>
|
||||
</ul>
|
||||
</div>
|
||||
</c:if>
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">Topic</p>
|
||||
<fieldset>
|
||||
<label>Topic : </label>
|
||||
<span class="content"><b>${article.topic}</b></span>
|
||||
</fieldset>
|
||||
|
||||
<p class="legend">State</p>
|
||||
<fieldset>
|
||||
<div>
|
||||
<label>State of article : </label>
|
||||
<span class="content"><b>${article.state}</b></span>
|
||||
</div>
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<br />
|
||||
<a class="download" href="
|
||||
<c:url value="/download.htm">
|
||||
<c:param name="articleId" value="${article.id}"/>
|
||||
</c:url>">Download</a></p>
|
||||
</div>
|
||||
</c:url>">Download</a>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user