1: <%--
2: Document : index
3: Created on : Jan 2, 2010, 5:37:03 PM
4: Author : Ondrej Macoszek <macosond@fel.cvut.cz>
5: --%>
6: <%@page contentType="text/html" pageEncoding="UTF-8"%>
7:
8: <%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%>
9: <%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%>
10:
11: <f:view locale="#{localeBack.currentLocale}">
12: <jsp:include page="header.jsp" />
13:
14: <h2><h:outputText value="#{title.musicianAdd}" /></h2>
15:
16: <h:form title="#{title.musicianAdd}">
17: <h:panelGrid columns="2">
18: <h:outputText value="#{msg.firstName}" />
19: <h:inputText id="firstName" value="#{musicianBack.musician.firstName}" />
20: <h:outputText value="#{msg.secondName}" />
21: <h:inputText id="secondName" value="#{musicianBack.musician.secondName}" />
22: <h:outputText value="#{msg.artName}" />
23: <h:inputText id="artName" value="#{musicianBack.musician.artName}" />
24: <h:outputText value="#{msg.biography}" />
25: <h:inputText id="biography" value="#{musicianBack.musician.biography}" />
26:
27: <h:panelGroup />
28: <h:panelGroup>
29: <h:commandButton value="#{title.musicianAdd}" action="#{musicianBack.add}" />
30: <h:commandButton value="#{msg.cancel}" action="list" immediate="true" />
31: </h:panelGroup>
32: </h:panelGrid>
33: <h:messages styleClass="error" />
34: </h:form>
35:
36: <jsp:include page="/common/footer.jsp" />
37: </f:view>