# Conflicts: # src/Test.java # src/métiers/Commande.java # test/métiers/CommandeTest.java
25 lines
696 B
Plaintext
25 lines
696 B
Plaintext
<%--
|
|
Document : listeClientsVue
|
|
Created on : 15 sept. 2024, 18:51:03
|
|
Author : famille Thevenot
|
|
--%>
|
|
|
|
<%@page import="java.util.ArrayList"%>
|
|
<%@page contentType="text/html" pageEncoding="UTF-8"%>
|
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>Liste des clients</title>
|
|
</head>
|
|
<body>
|
|
<%@include file="jspf/enteteClient.jspf" %>
|
|
<%@include file="jspf/menuClient.jspf" %>
|
|
<h2>Liste des clients</h2>
|
|
|
|
<c:out value="${laListe}" default="La liste doit être là" />
|
|
|
|
</body>
|
|
</html>
|