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