dashboard.xhtml
3.12 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!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:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:appez="http://java.sun.com/jsf/composite/components" >
<ui:composition template="template.xhtml">
<ui:define name="pageTitle">
<h:outputText value="HOME needs i18n"></h:outputText>
</ui:define>
<ui:define name="content">
<h:outputScript library="javax.faces" name="ajax.js" target="head"></h:outputScript>
<h:messages errorClass="errorMsgs" infoClass="infoMsgs" />
<appez:title id="tituloDashboard" text="#{dashboardMB.selectedSprint.name}">
<h:panelGroup>
<h:outputLabel value="#{i18n['label.goal']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.goals}" />
</h:panelGroup>
</appez:title>
<h:panelGrid columns="2" style="float: left">
<h:outputLabel value="#{i18n['label.estimatives']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.estimation.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.planning1']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.sprintPlanningI.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.planning2']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.sprintPlanningII.date}"/>
<h:outputLabel value="#{i18n['label.dailyMeeting']}:" for="" style="font-weight: bold" />
<h:panelGroup>
<h:outputText value="#{dashboard2MB.selectedSprint.dailyMeetingTime}">
</h:outputText>
</h:panelGroup>
<h:outputLabel value="#{i18n['label.revision']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.revision.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
<h:outputLabel value="#{i18n['label.retrospective']}:" for="" style="font-weight: bold" />
<h:outputText value="#{dashboardMB.selectedSprint.meetings.retrospective.date}">
<f:convertDateTime pattern="dd/MM/yyyy" />
</h:outputText>
</h:panelGrid>
<table width="100%">
<tr>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmStories">
<ui:include src=".dashboard.stories.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmTodo">
<ui:include src=".dashboard.todoTasks.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmWorking">
<ui:include src=".dashboard.workingTasks.xhtml" />
</h:form>
</td>
<td style="vertical-align: top; min-width: 150px" width="150px">
<h:form id="frmDone">
<ui:include src=".dashboard.doneTasks.xhtml" />
</h:form>
</td>
</tr>
</table>
</ui:define>
</ui:composition>
</html>