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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| <%@ include file="../content/common/import_jsp.jsp" %>
<%
String date = (String) session.getAttribute("date");
String msg = (String) request.getAttribute("msg");
%>
<html>
<head>
<link href="../style/common/common_style.css" rel="stylesheet" type="text/css"/>
<link href="../style/spec/gestion/domaine/gestion_domaine_style.css" rel="stylesheet" type="text/css"/>
<link href="../style/spec/gestion/gestion_common_style.css" rel="stylesheet" type="text/css"/>
<link href="../style/spec/gestion/domaine/displaytag.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="../lib/common/selectiontable/script.js"></script>
</head>
[...]
<div id="center_view_body_title"><a>Liste des <libelle:TagChange libelle="niveau1"/>s</a></div>
<center>
<table id="c_v_body_table">
<display:table name="liste_domaines" defaultsort="1" defaultorder="ascending" style="width:100%;" id="liste_domainesTable" requestURI="">
<display:column property="libelle" title="Nom domaine" sortable="true" headerClass="sortable" style="width:300px;"/>
<display:column title="Responsable" sortable="true">${map_domaines[liste_domainesTable.id].nom} ${map_domaines[liste_domainesTable.id].prenom}</display:column>
<display:column title="Outils" style="width:100px;text-align:center;" >
<center>
<a href="/pop/vues/rp/modif_domaine.htm?dom=${liste_domainesTable.id}"><img src="../util/icon/iconEdit.gif" alt="Modifier" border=0 /></a>
<a href="/pop/vues/rp/suppr_domaine.htm?dom=${liste_domainesTable.id}"><img src="../util/icon/iconDele.gif" alt="Supprimer" border=0 /></a>
</center>
</display:column>
</display:table>
</table>
</center>
</div>
[...]
<div id="bottom_view">
<div id="center_view_body_off">
<div id="center_view_body_title_off"><a>Liste des <libelle:TagChange libelle="niveau1"/>s désactivés</a></div>
<center>
<table id="c_v_body_table_off">
<display:table name="liste_domaines_disabled" style="width:100%;border: 0px solid red;" id="liste_domainesTable" requestURI="">
<display:column property="libelle" title="Nom domaine désactivé" />
</display:table>
</table>
</center>
</div>
</div>
[...] |