This commit is contained in:
48
web/WEB-INF/listeJSP.jsp
Normal file
48
web/WEB-INF/listeJSP.jsp
Normal file
@@ -0,0 +1,48 @@
|
||||
<%@include file = "jspf/enteteJSPF.jspf" %>
|
||||
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
||||
<%@page import="java.util.ArrayList" %>
|
||||
<h2>Liste des clients</h2><!-- comment -->
|
||||
<!-- <p>Page en cours de construction</p>
|
||||
<img src="images/pageEnConstruction.jpg" alt="Page en construction"/>-->
|
||||
|
||||
<table border="1" cellspacing="3" cellpadding="1">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Civilit<69></th>
|
||||
<th>Nom</th>
|
||||
<th>Pr<50>nom</th>
|
||||
<th>Mot de passe</th>
|
||||
<th>No</th>
|
||||
<th>Rue</th>
|
||||
<th>Ville</th>
|
||||
<th>Code postal</th>
|
||||
<th>Mail</th>
|
||||
<th>T<>l</th>
|
||||
<th>Date naissance</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<c:forEach items="${lesClients}" var="unClient">
|
||||
<tr>
|
||||
<td><c:out value="${unClient.getId()}"/></td>
|
||||
<td><c:out value="${unClient.getCivilite()}"/></td>
|
||||
<td><c:out value="${unClient.getNom()}"/></td>
|
||||
<td><c:out value="${unClient.getPrenom()}"/></td>
|
||||
<td><c:out value="${unClient.getMdp()}"/></td>
|
||||
<td><c:out value="${unClient.getAdrNo()}"/></td>
|
||||
<td><c:out value="${unClient.getAdrRue()}"/></td>
|
||||
<td><c:out value="${unClient.getAdrVille()}"/></td>
|
||||
<td><c:out value="${unClient.getAdrCP()}"/></td>
|
||||
<td><c:out value="${unClient.getAdrmail()}"/></td>
|
||||
<td><c:out value="${unClient.getTel()}"/></td>
|
||||
<td><c:out value="${unClient.getDateNais()}"/></td>
|
||||
</tr>
|
||||
</c:forEach>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
<%@include file="jspf/menuJSPF.jspf" %>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user