23 lines
836 B
HTML
23 lines
836 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
xmlns:h="http://java.sun.com/jsf/html"
|
|
xmlns:f="http://java.sun.com/jsf/core"
|
|
xmlns:rich="http://richfaces.org/rich"
|
|
>
|
|
<ui:composition template="/jsp/includes/layout.xhtml">
|
|
<ui:define name="title">Vasc Admin</ui:define>
|
|
<ui:define name="content">
|
|
<rich:panel style="width:90%;margin-top:2em;">
|
|
<f:facet name="header">
|
|
<h:outputText value="Vasc Admin" />
|
|
</f:facet>
|
|
<rich:dataList var="info" value="#{vascFacesController.vascAdminEntries}">
|
|
<h:column>
|
|
<h:outputLink value="#{facesContext.externalContext.requestContextPath}/vasc/#{info}/list.jsf"><h:outputText value="#{info}"/></h:outputLink>
|
|
</h:column>
|
|
</rich:dataList>
|
|
</rich:panel>
|
|
</ui:define>
|
|
</ui:composition>
|
|
</html>
|