30 lines
544 B
Plaintext
30 lines
544 B
Plaintext
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
|
|
|
<html>
|
|
<head>
|
|
</head>
|
|
<body>
|
|
|
|
<h4 class="title">Forum</h4>
|
|
|
|
|
|
<table style="width: 100%; border: 1px solid orange;">
|
|
|
|
<tr>
|
|
<th>Article</th>
|
|
<th>Message's number</th>
|
|
</tr>
|
|
|
|
<c:forEach items="${listArticle}" var="article">
|
|
|
|
<tr>
|
|
<td><a href="<c:url value="/forumArticle.htm"><c:param name="articleId" value="${article.id}"/></c:url>"><b>${article.title}</b></a></td>
|
|
<td>Afficher le nombre ici</td>
|
|
</tr>
|
|
|
|
</c:forEach>
|
|
|
|
</table>
|
|
|
|
</body>
|
|
</html> |