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
| <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="h" uri="http://java.sun.com/jsf/html" %>
<%@ taglib prefix="f" uri="http://java.sun.com/jsf/core" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<title>ASMINISTRATION</title>
<meta charset="UTF-8" />
<meta name="generator" content="NETBEANS 7.0.1"/>
<meta name="author" content=""/>
<meta name="keywords" content=""/>
<meta name="description" content=""/>
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW"/>
<link rel="icon" type="image/png" href="../GFXs/favicon.png"/>
<link rel="stylesheet" type="text/css" href="../CSS/style.css" />
<%@include file="../../scripts/analytics.jsp" %>
</head>
<body>
<%@include file="haut.jsp" %>
<section>
<c:catch var="ex">
<h1>Créer une sous-catégorie</h1>
<c:if test="${requestScope.sousCategorie!=null}">
<c:set var="sousCat" value="${requestScope.sousCategorie}" scope="page"></c:set>
<div id="form">
<c:if test="${not empty sousCat.errorMsg}">
<div class="erreur">
<div>ERREUR(S) :</div>
<p></p>
${sousCat.errorMsg}
</div>
<p></p>
</c:if>
<h:form></h:form>
</div>
</c:if>
</c:catch>
<c:if test="${not empty ex}">
<div class="erreur">
<div>ERREUR :</div>
<br/>
<div><c:out value="${ex.message}"></c:out></div>
</div>
</c:if>
</section>
</body>
</html> |
Partager