Quelques corrections (y compris correction d'Anglais sur la page d'accueil) Debut de Admin
26 lines
405 B
Plaintext
26 lines
405 B
Plaintext
<%@ include file="/WEB-INF/decorators/include.jsp"%>
|
|
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<h4 class="title">list state of Articles</h4>
|
|
<table>
|
|
|
|
|
|
<c:forEach items="${articles}" var="article">
|
|
|
|
|
|
<tr>
|
|
<td>
|
|
<div class=""><h2>${article.title}</h2></div>
|
|
</td>
|
|
<td>
|
|
<h2>${article.state}</h2>
|
|
</td>
|
|
</tr>
|
|
|
|
</c:forEach>
|
|
|
|
</table>
|
|
</body>
|
|
</html> |