[92] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[147] | 7 | <title>Create Entry</title> |
---|
| 8 | <nav:resources override="true"/> |
---|
| 9 | <resource:dateChooser /> |
---|
[92] | 10 | </head> |
---|
| 11 | <body> |
---|
| 12 | <div class="nav"> |
---|
[147] | 13 | <h1>Create Entry</h1> |
---|
[92] | 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}" /> |
---|
[191] | 26 | <g:hiddenField name="entryType.id" value="${entryInstance.entryType.id}" /> |
---|
[92] | 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"> |
---|
[191] | 36 | <g:link controller="taskDetailed" action="show" id="${entryInstance.task.id}" > |
---|
[218] | 37 | ${entryInstance?.task.encodeAsHTML()} |
---|
[191] | 38 | </g:link> |
---|
[92] | 39 | </td> |
---|
[191] | 40 | </tr> |
---|
[92] | 41 | |
---|
| 42 | <tr class="prop"> |
---|
| 43 | <td valign="top" class="name"> |
---|
[230] | 44 | <label for="comment">${entryInstance?.entryType.encodeAsHTML()}:</label> |
---|
[92] | 45 | </td> |
---|
| 46 | <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'comment','errors')}"> |
---|
[98] | 47 | <textarea rows="5" cols="40" name="comment">${fieldValue(bean:entryInstance, field:'comment')}</textarea> |
---|
[230] | 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.work.done" /> |
---|
| 53 | </g:elseif> |
---|
[92] | 54 | </td> |
---|
[230] | 55 | </tr> |
---|
[92] | 56 | |
---|
| 57 | <tr class="prop"> |
---|
| 58 | <td valign="top" class="name"> |
---|
| 59 | <label for="dateDone">Date Done:</label> |
---|
| 60 | </td> |
---|
| 61 | <td valign="top" class="value ${hasErrors(bean:entryInstance,field:'dateDone','errors')}"> |
---|
[147] | 62 | <richui:dateChooser name="dateDone" format="dd-MM-yyyy" value="${new Date()}" /> |
---|
[230] | 63 | <g:helpBalloon code="entry.date.done" /> |
---|
[92] | 64 | </td> |
---|
[230] | 65 | </tr> |
---|
[92] | 66 | |
---|
| 67 | <tr class="prop"> |
---|
| 68 | <td valign="top" class="name"> |
---|
[98] | 69 | <label for="durationHour">Duration:</label> |
---|
[92] | 70 | </td> |
---|
| 71 | |
---|
[98] | 72 | <td valign="top" class="value"> |
---|
[134] | 73 | <input class="time ${hasErrors(bean:entryInstance,field:'durationHour','errors')}" |
---|
[98] | 74 | type="text" id="durationHour" name="durationHour" |
---|
| 75 | value="${fieldValue(bean:entryInstance,field:'durationHour')}" /> |
---|
| 76 | : |
---|
[134] | 77 | <input class="time ${hasErrors(bean:entryInstance,field:'durationMinute','errors')}" |
---|
[98] | 78 | type="text" id="durationMinute" name="durationMinute" |
---|
| 79 | value="${fieldValue(bean:entryInstance,field:'durationMinute')}" /> |
---|
| 80 | <g:helpBalloon code="entry.duration" /> |
---|
| 81 | </td> |
---|
| 82 | </tr> |
---|
[92] | 83 | |
---|
| 84 | </tbody> |
---|
| 85 | </table> |
---|
| 86 | </div> |
---|
| 87 | <div class="buttons"> |
---|
| 88 | <span class="button"><input class="save" type="submit" value="Create" /></span> |
---|
| 89 | </div> |
---|
| 90 | </g:form> |
---|
| 91 | </div> |
---|
| 92 | </body> |
---|
| 93 | </html> |
---|