1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib uri="taglib-URI-c" prefix="c" %>
<%@ taglib uri="taglib-URI-fmt" prefix="fmt" %>
<%@ taglib uri="taglib-URI-displaytag" prefix="display" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<%@page import="java.util.Locale"%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
<link rel=stylesheet href=/win/css/style.css type=text/css>
<link rel=stylesheet href=/win/css/displaytag.css type=text/css>
<script language="javascript" type="text/javascript" src="/win/js/scripts.js"></script>
</head>
<body>
<fmt:setLocale value="<%= Locale.getDefault() %>" scope="session" />
<fmt:setBundle basename="RessourcesTraduction" />
<div class="info">Langue sélectionnée : <fmt:message key="langue"></fmt:message></div>
<br><br>
<display:table name="${sessionScope['tabBordNego']}" pagesize="10" export="true" defaultsort="4" defaultorder="ascending" size="600">
<display:column property="saiCp" title="CP" sortable="true" style="width:30px" />
<display:column property="saiAdresse" title="Adresse" sortable="true" style="width:200px" />
<display:column property="saiEquipe" title="Equipe" sortable="true" style="width:30px" />
<display:column property="saiTransact" title="Transaction" sortable="true" href="/win/RechercheTransaction" paramId="numTransact" paramProperty="saiTransact" style="width:60px" />
<display:column property="saiDemandeur" title="Demandeur" sortable="true" style="width:140px" />
<display:column property="saiOffreur" title="Offreur" sortable="true" style="width:140px" />
</display:table>
<br><br>
<div class="info">Utilisateur connecté : <c:out value="${sessionScope['prenom']} ${sessionScope['nom']}"></c:out></div>
</body>
</html> |