24 lines
766 B
HTML
24 lines
766 B
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE html>
|
|
<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/page_template.xhtml">
|
|
<f:metadata>
|
|
<f:viewParam name ="courseId" value="#{courseDetail.courseId}"/>
|
|
<f:viewAction action="#{courseDetail.onload}"/>
|
|
</f:metadata>
|
|
|
|
<ui:param name="pageTitle" value="Course Details"/>
|
|
<ui:define name="panel-main">
|
|
<section class="course_detail">
|
|
<h:form>
|
|
<h1>#{course.name}</h1>
|
|
<p> </p>
|
|
</h:form>
|
|
</section>
|
|
</ui:define>
|
|
</ui:composition>
|
|
</html>
|