49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
<%@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é</th>
|
|
<th>Nom</th>
|
|
<th>Pré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>
|