Ravi Srinivasan
2018-09-10 aaf094af7ecf98e07e31a231fdab871b25961bd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0" encoding="UTF-8"?>
 
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
    xmlns:ui="http://java.sun.com/jsf/facelets"
    xmlns:f="http://java.sun.com/jsf/core"
    xmlns:h="http://java.sun.com/jsf/html"
    template="/WEB-INF/templates/default.xhtml">
    <ui:define name="title">
    Create Queries
    </ui:define>
    <ui:define name="application_name">
        Create Queries
    </ui:define>
    <ui:define name="content">
        <h1>User Log</h1>
        <br class="clear"/>
        <h:form id="viewform">
 
                <h:outputLabel value="Users:"/>
                <br class="clear"/>
                <ul>
                    <ui:repeat value="#{hello.persons}" var="person">
                        <li>
                            <h:outputText value="#{person.id} -- #{person.name}"/><br/>
 
                        </li>
                    </ui:repeat>
                </ul>
            <a href="/create-queries/index.xhtml">Back</a>
            </h:form>
    </ui:define>
</ui:composition>