RotanaReg-Playground/src/main/webapp/student.xhtml
2017-09-01 16:01:31 +02:00

36 lines
1.1 KiB
HTML

<?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">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html"
xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
xmlns:f="http://xmlns.jcp.org/jsf/core">
<ui:composition template="templates/template_page.xhtml">
<ui:param name="pageTitle" value="Student sidan"/>
<ui:define name="panel-top">
<section>
<h:outputLink value="index.xhtml">Logga ut</h:outputLink>
</section>
</ui:define>
<ui:define name="panel-main">
<h:dataTable value="#{userBean.users.users}" var="myUser">
<h:column>
#{myUser.name} #{myUser.role}
</h:column>
</h:dataTable>
<section>
<h:dataTable value="#{coursesBean.courses.courses}" var="myCourse">
<h:column>
<h1>#{myCourse.name}</h1>
#{myCourse.description}
</h:column>
</h:dataTable>
</section>
</ui:define>
</ui:composition>
</html>