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: <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
11:
12: <f:view locale="#{localeBack.currentLocale}">
13: <jsp:include page="/common/header.jsp" />
14:
15: <h2><h:outputText value="#{title.bandList}" /></h2>
16:
17: <c:choose>
18: <c:when test="${bandBack.bandListModel.rowCount > 0}" >
19: <h:dataTable value="#{bandBack.bandListModel}" var="band">
20: <h:column>
21: <f:facet name="header">
22: <h:outputText value="#{msg.name}" />
23: </f:facet>
24: <h:outputText value="#{band.name}" />
25: </h:column>
26: <h:column>
27: <f:facet name="header">
28: <h:outputText value="#{msg.website}" />
29: </f:facet>
30: <h:outputText value="#{band.website}" />
31: </h:column>
32:
33: <h:column>
34: <f:facet name="header">
35: <h:outputText value="#{msg.country}" />
36: </f:facet>
37: <h:outputText value="#{band.country}" />
38: </h:column>
39:
40: <h:column>
41: <f:facet name="header">
42: <h:outputText value="#{msg.dateFoundation}" />
43: </f:facet>
44: <h:outputText value="#{band.dateFoundation}">
45: <f:convertDateTime pattern="dd.MM.yyyy HH:mm" />
46: </h:outputText>
47: </h:column>
48:
49: <h:column>
50: <f:facet name="header">
51: <h:outputText value="#{msg.preferredGenre}" />
52: </f:facet>
53: <h:outputText value="#{band.preferredGenre.name}" />
54: </h:column>
55: </h:dataTable>
56: </c:when>
57: <c:otherwise>
58: <p><h:outputText value="#{msg.noResults}" /></p>
59: </c:otherwise>
60: </c:choose>
61:
62:
63: <jsp:include page="/common/footer.jsp" />
64: </f:view>