1 | |
---|
2 | |
---|
3 | <html> |
---|
4 | <head> |
---|
5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
6 | <meta name="layout" content="main" /> |
---|
7 | <title>Create Entry</title> |
---|
8 | <nav:resources override="true"/> |
---|
9 | <resource:dateChooser /> |
---|
10 | </head> |
---|
11 | <body> |
---|
12 | <div class="nav"> |
---|
13 | <h1>Create Entry</h1> |
---|
14 | </div> |
---|
15 | <div class="body"> |
---|
16 | <g:if test="${flash.message}"> |
---|
17 | <div class="message">${flash.message}</div> |
---|
18 | </g:if> |
---|
19 | <g:hasErrors bean="${entryInstance}"> |
---|
20 | <div class="errors"> |
---|
21 | <g:renderErrors bean="${entryInstance}" as="list" /> |
---|
22 | </div> |
---|
23 | </g:hasErrors> |
---|
24 | <g:form action="save" method="post" > |
---|
25 | <g:hiddenField name="task.id" value="${entryInstance.task.id}" /> |
---|
26 | <g:hiddenField name="entryType.id" value="${entryInstance.entryType.id}" /> |
---|
27 | <div class="dialog"> |
---|
28 | <table> |
---|
29 | <tbody> |
---|
30 | |
---|
31 | <tr class="prop"> |
---|
32 | <td valign="top" class="name"> |
---|
33 | <label for="task">Task:</label> |
---|
34 | </td> |
---|
35 | <td valign="top" class="name"> |
---|
36 | <g:link controller="taskDetailed" action="show" id="${entryInstance.task.id}" > |
---|
37 | ${entryInstance?.task.encodeAsHTML()} |
---|
38 | </g:link> |
---|
39 | </td> |
---|
40 | </tr> |
---|
41 | |
---|
42 | <tr class="prop"> |
---|
43 | <td valign="top" class="name"> |
---|
44 | <label for="comment">${entryInstance?.entryType.encodeAsHTML()}:</label> |
---|
45 | </td> |
---|
46 | <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'comment','errors')}"> |
---|
47 | <textarea rows="5" cols="40" name="comment">${fieldValue(bean:entryInstance, field:'comment')}</textarea> |
---|
48 | <g:if test="${entryInstance?.entryType?.id == 1}"> |
---|
49 | <g:helpBalloon code="entry.comment.fault" /> |
---|
50 | </g:if> |
---|
51 | <g:elseif test="${entryInstance?.entryType?.id == 2}"> |
---|
52 | <g:helpBalloon code="entry.comment.cause" /> |
---|
53 | </g:elseif> |
---|
54 | <g:elseif test="${entryInstance?.entryType?.id == 3}"> |
---|
55 | <g:helpBalloon code="entry.comment.work.done" /> |
---|
56 | </g:elseif> |
---|
57 | </td> |
---|
58 | </tr> |
---|
59 | |
---|
60 | <tr class="prop"> |
---|
61 | <td valign="top" class="name"> |
---|
62 | <label for="dateDone">Date Done:</label> |
---|
63 | </td> |
---|
64 | <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}"> |
---|
65 | <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${entryInstance.dateDone}" /> |
---|
66 | <g:helpBalloon code="entry.date.done" /> |
---|
67 | </td> |
---|
68 | </tr> |
---|
69 | |
---|
70 | <g:if test="${entryInstance?.entryType?.id == 1}"> |
---|
71 | <tr class="prop"> |
---|
72 | <td valign="top" class="name"> |
---|
73 | <label for="productionReference">Production:</label> |
---|
74 | </td> |
---|
75 | <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'productionReference','errors')}"> |
---|
76 | <g:select optionKey="id" |
---|
77 | from="${ProductionReference.findAllByIsActive(true)}" |
---|
78 | name="productionReference.id" |
---|
79 | value="${entryInstance.productionReference?.id}" |
---|
80 | noSelection="['null':'--None--']"> |
---|
81 | </g:select> |
---|
82 | <g:helpBalloon code="entry.productionReference.fault" /> |
---|
83 | </td> |
---|
84 | </tr> |
---|
85 | </g:if> |
---|
86 | |
---|
87 | <g:if test="${entryInstance?.entryType?.id != 2}"> |
---|
88 | <tr class="prop"> |
---|
89 | <td valign="top" class="name"> |
---|
90 | <label for="durationHour">Duration:</label> |
---|
91 | </td> |
---|
92 | |
---|
93 | <td valign="top" class="value"> |
---|
94 | <input class="time ${hasErrors(bean:entryInstance,field:'durationHour','errors')}" |
---|
95 | type="text" id="durationHour" name="durationHour" |
---|
96 | value="${fieldValue(bean:entryInstance,field:'durationHour')}" /> |
---|
97 | : |
---|
98 | <input class="time ${hasErrors(bean:entryInstance,field:'durationMinute','errors')}" |
---|
99 | type="text" id="durationMinute" name="durationMinute" |
---|
100 | value="${fieldValue(bean:entryInstance,field:'durationMinute')}" /> |
---|
101 | <g:helpBalloon code="entry.duration" /> |
---|
102 | </td> |
---|
103 | </tr> |
---|
104 | </g:if> |
---|
105 | |
---|
106 | </tbody> |
---|
107 | </table> |
---|
108 | </div> |
---|
109 | <div class="buttons"> |
---|
110 | <span class="button"><input class="save" type="submit" value="Create" /></span> |
---|
111 | </div> |
---|
112 | </g:form> |
---|
113 | </div> |
---|
114 | </body> |
---|
115 | </html> |
---|