<%@page import="java.util.ArrayList"%> <%@page import="domaine.User"%> <%@page import="domaine.Student"%> <%@page import="java.util.List"%> <%@include file="header.jsp"%> <%@include file="menuhaut.jsp"%>






Ajout un étudiant
<% List listEtudiant = (List) session.getAttribute("students"); if (user.getProfil().equalsIgnoreCase("D")) { %>

Liste des étudiants

<%} else { %>

Informations sur un étudiant

<%} %>
<% int i = 0; for (Student student : listEtudiant) { %> <% } %>
id Prénom Nom E-mail Adresse Telephone Date de naissance Action
<%=student.getId()%> <%=student.getFirstName()%> <%=student.getLastName()%> <%=student.getMail()%> <%=student.getAddress()%> <%=student.getPhone()%> <%=student.getDob()%>
<%@include file="footer.jsp"%>