stateArticle pour visualiser l'etat des articles pour roles differents

Policy failures:   
Code warning
- failed on resource stateArticle.jsp. Reason: No end tag (</div>)., line 16
- failed on resource StateArticleController.java. Reason: The import java.util.Hashtable is never used, line 
Override reason:
This commit is contained in:
Jialin Wang
2008-02-18 01:00:15 +00:00
parent 3941b6ec1b
commit 11e388b15a
4 changed files with 118 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
<%@ 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>
</td>
<td>
<h2>${article.state}</h2>
</td>
</tr>
</c:forEach>
</table>
</body>
</html>