32 lines
1.1 KiB
HTML
32 lines
1.1 KiB
HTML
|
<ui:composition 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"
|
||
|
template="/WEB-INF/template.xhtml">
|
||
|
<ui:define name="head">
|
||
|
<h:outputScript library="js" name="scriptGeneric/dialogGeneric.js" />
|
||
|
</ui:define>
|
||
|
<ui:define name="breadcrumb">
|
||
|
<li><p:link outcome="#{i18n['outcome.dashboard']}">#{i18n['dashboard.title']}</p:link></li>
|
||
|
</ui:define>
|
||
|
|
||
|
<ui:define name="content">
|
||
|
<div class="ui-g">
|
||
|
<div class="ui-g-12">
|
||
|
|
||
|
<h:form id="dashboardResumen">
|
||
|
<p:growl id="msgs" showDetail="true"/>
|
||
|
<div class="ui-g-12">
|
||
|
<div class="card">
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</h:form>
|
||
|
|
||
|
</div>
|
||
|
</div>
|
||
|
</ui:define>
|
||
|
|
||
|
</ui:composition>
|