Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/stateArticle.jsp
Christian Corsano ed6d5ab3f7 Mise en place de la protection des pages par role (voir applicationContextAcegi.xml)
Quelques corrections (y compris correction d'Anglais sur la page d'accueil)
Debut de Admin
2008-02-19 13:48:42 +00:00

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>