Files
yacos/YACOSWeb/WebContent/WEB-INF/jsp/stateArticle.jsp
Jialin Wang 11e388b15a 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:
2008-02-18 01:00:15 +00:00

26 lines
399 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>
</td>
<td>
<h2>${article.state}</h2>
</td>
</tr>
</c:forEach>
</table>
</body>
</html>