Skip to content
Snippets Groups Projects
create.xhtml 1.49 KiB
Newer Older
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
                xmlns:h="http://java.sun.com/jsf/html"
                xmlns:p="http://primefaces.org/ui"
                xmlns:f="http://java.sun.com/jsf/core"
                xmlns:ui="http://xmlns.jcp.org/jsf/facelets">

    <title>Experiment Station Edit</title>

    <ui:composition template="../../templates/dmViewTemplate.xhtml">
        <ui:define name="middleCenter">
            <div class="pageTitle">
                <h1>Add Experiment Station</h1>
            </div>

            <h:form id="addStationForm">

sveseli's avatar
sveseli committed
                <ui:include src="private/stationCreatePanelGrid.xhtml"/>

                <p/>
                <div class="actionButton">
                    <p:commandButton action="#{experimentStationController.create()}" value="Save" alt="Save" icon="ui-icon-check" update="@form"/>
                    <p:commandButton action="#{experimentStationController.prepareList()}" immediate="true" value="Cancel" alt="Cancel" icon="ui-icon-cancel"/>
                </div>
            </h:form>
            <h:outputScript library="js" name="common/forwardNotLoggedin.js" rendered="#{!loginController.loggedIn}"/>
            <h:outputScript library="js" name="common/forwardNotAuthorized.js" rendered="#{!loginController.admin}"/>

        </ui:define>
    </ui:composition>
</ui:composition>