blob: 39a00878f8af85e4bb5cedae17c59caef665d044 [file] [log] [blame]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<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">
<ui:composition template="template.jsf">
<ui:define name="title">
<h:outputText value="#{viewLeague.leagueId}" />
</ui:define>
<ui:define name="crumb1">
</ui:define>
<ui:define name="body">
<h:form>
<div align="center">
<h:dataTable var="division" value="#{viewLeague.divisions}"
border="1" styleClass="pretty" width="500">
<f:facet name="header">Divisions
</f:facet>
<h:column>
<h:commandLink value="#{division.name}"
action="#{viewDivision.view}">
<f:param name="division-id" value="#{division.id}" />
</h:commandLink>
</h:column>
<f:facet name="footer">
<div align="right">
<h:commandButton CLASS="button" value="Add" action="create-division" />
</div>
</f:facet>
</h:dataTable>
</div>
</h:form>
</ui:define>
</ui:composition>
</html>