26 lines
948 B
HTML
26 lines
948 B
HTML
<!DOCTYPE html>
|
|
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:h="http://xmlns.jcp.org/jsf/html"
|
|
xmlns:f="http://xmlns.jcp.org/jsf/core"
|
|
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
|
|
xmlns:p="http://primefaces.org/ui"
|
|
template="/templates/main-template.xhtml">
|
|
|
|
<ui:define name="title">UnionFlow - Rapports</ui:define>
|
|
|
|
<ui:define name="content">
|
|
<div class="grid">
|
|
<div class="col-12">
|
|
<div class="card">
|
|
<h2>Rapports</h2>
|
|
<p>Génération et consultation de rapports</p>
|
|
|
|
<p:button value="Retour au tableau de bord"
|
|
icon="pi pi-arrow-left"
|
|
outcome="/pages/secure/dashboard"/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</ui:define>
|
|
|
|
</ui:composition> |