Nettoyage des doublons pour éviter la redondance : Suppressions (liste.xhtml redondants avec écrans racine): - devis/liste.xhtml - employes/liste.xhtml - equipes/liste.xhtml - factures/liste.xhtml - maintenance/liste.xhtml - materiels/liste.xhtml - messages/liste.xhtml - notifications/liste.xhtml - planning/liste.xhtml - rapports/liste.xhtml - stock/liste.xhtml Suppressions (inconsistance nouveau/nouvelle): - equipes/nouvelle.xhtml - factures/nouvelle.xhtml Stratégie: - Un seul écran liste par module (racine) - Standardisation sur nouveau.xhtml Résultat: 163 écrans restants (vs 176 avant)
58 lines
2.5 KiB
HTML
58 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://java.sun.com/jsf/html"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
lang="fr">
|
|
|
|
<h:head>
|
|
<f:facet name="first">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<link rel="icon" href="#{resource['freya-layout:images/favicon.ico']}" type="image/x-icon"></link>
|
|
</f:facet>
|
|
<title><ui:insert name="title">BTP Xpress - Gestion de Projets BTP</ui:insert></title>
|
|
<h:outputScript name="js/custom-menu.js" />
|
|
<h:outputScript name="js/layout.js" library="freya-layout" />
|
|
<h:outputScript name="js/prism.js" library="freya-layout"/>
|
|
<ui:insert name="head"/>
|
|
</h:head>
|
|
|
|
<h:body styleClass="#{guestPreferences.inputStyleClass}">
|
|
<div class="layout-wrapper layout-topbar-#{guestPreferences.topbarTheme} layout-menu-#{guestPreferences.menuTheme} #{guestPreferences.menuMode}" >
|
|
<ui:include src="./topbar.xhtml"/>
|
|
|
|
<ui:include src="./rightpanel.xhtml"/>
|
|
<ui:include src="./config.xhtml" />
|
|
|
|
<div class="layout-main">
|
|
<div class="layout-content">
|
|
<ui:insert name="content"/>
|
|
</div>
|
|
<ui:include src="./footer.xhtml"/>
|
|
</div>
|
|
|
|
<p:ajaxStatus style="width:32px;height:32px;position:fixed;right:7px;bottom:7px">
|
|
<f:facet name="start">
|
|
<i class="pi pi-spin pi-spinner ajax-loader" aria-hidden="true"/>
|
|
</f:facet>
|
|
|
|
<f:facet name="complete">
|
|
<h:outputText value="" />
|
|
</f:facet>
|
|
</p:ajaxStatus>
|
|
<div class="layout-mask modal-in"></div>
|
|
</div>
|
|
<h:outputStylesheet name="css/primeicons.css" library="freya-layout" />
|
|
<h:outputStylesheet name="css/primeflex.min.css" library="freya-layout" />
|
|
<h:outputStylesheet name="css/#{guestPreferences.layout}.css" library="freya-layout" />
|
|
<h:outputStylesheet name="css/custom-topbar.css" />
|
|
<h:outputStylesheet name="css/custom-dashboard.css" />
|
|
</h:body>
|
|
|
|
</html>
|
|
|