| [66] | 1 |  | 
|---|
 | 2 |  | 
|---|
 | 3 | <html> | 
|---|
 | 4 |     <head> | 
|---|
 | 5 |         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | 
|---|
 | 6 |         <meta name="layout" content="main" /> | 
|---|
| [93] | 7 |         <title>Show TaskModification</title> | 
|---|
| [66] | 8 |     </head> | 
|---|
 | 9 |     <body> | 
|---|
 | 10 |         <div class="nav"> | 
|---|
| [151] | 11 |             <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span> | 
|---|
| [93] | 12 |             <span class="menuButton"><g:link class="list" action="list">TaskModification List</g:link></span> | 
|---|
 | 13 |             <span class="menuButton"><g:link class="create" action="create">New TaskModification</g:link></span> | 
|---|
| [66] | 14 |         </div> | 
|---|
 | 15 |         <div class="body"> | 
|---|
| [93] | 16 |             <h1>Show TaskModification</h1> | 
|---|
| [66] | 17 |             <g:if test="${flash.message}"> | 
|---|
 | 18 |             <div class="message">${flash.message}</div> | 
|---|
 | 19 |             </g:if> | 
|---|
 | 20 |             <div class="dialog"> | 
|---|
 | 21 |                 <table> | 
|---|
 | 22 |                     <tbody> | 
|---|
 | 23 |  | 
|---|
 | 24 |                      | 
|---|
 | 25 |                         <tr class="prop"> | 
|---|
 | 26 |                             <td valign="top" class="name">Id:</td> | 
|---|
 | 27 |                              | 
|---|
| [93] | 28 |                             <td valign="top" class="value">${fieldValue(bean:taskModificationInstance, field:'id')}</td> | 
|---|
| [66] | 29 |                              | 
|---|
 | 30 |                         </tr> | 
|---|
 | 31 |                      | 
|---|
 | 32 |                         <tr class="prop"> | 
|---|
 | 33 |                             <td valign="top" class="name">Person:</td> | 
|---|
 | 34 |                              | 
|---|
| [93] | 35 |                             <td valign="top" class="value"><g:link controller="person" action="show" id="${taskModificationInstance?.person?.id}">${taskModificationInstance?.person?.encodeAsHTML()}</g:link></td> | 
|---|
| [66] | 36 |                              | 
|---|
 | 37 |                         </tr> | 
|---|
 | 38 |                      | 
|---|
 | 39 |                         <tr class="prop"> | 
|---|
| [93] | 40 |                             <td valign="top" class="name">Task Modification Type:</td> | 
|---|
| [66] | 41 |                              | 
|---|
| [93] | 42 |                             <td valign="top" class="value"><g:link controller="taskModificationType" action="show" id="${taskModificationInstance?.taskModificationType?.id}">${taskModificationInstance?.taskModificationType?.encodeAsHTML()}</g:link></td> | 
|---|
| [66] | 43 |                              | 
|---|
 | 44 |                         </tr> | 
|---|
 | 45 |                      | 
|---|
 | 46 |                         <tr class="prop"> | 
|---|
 | 47 |                             <td valign="top" class="name">Task:</td> | 
|---|
 | 48 |                              | 
|---|
| [93] | 49 |                             <td valign="top" class="value"><g:link controller="task" action="show" id="${taskModificationInstance?.task?.id}">${taskModificationInstance?.task?.encodeAsHTML()}</g:link></td> | 
|---|
| [66] | 50 |                              | 
|---|
 | 51 |                         </tr> | 
|---|
 | 52 |                      | 
|---|
 | 53 |                         <tr class="prop"> | 
|---|
 | 54 |                             <td valign="top" class="name">Date:</td> | 
|---|
 | 55 |                              | 
|---|
| [93] | 56 |                             <td valign="top" class="value">${fieldValue(bean:taskModificationInstance, field:'date')}</td> | 
|---|
| [66] | 57 |                              | 
|---|
 | 58 |                         </tr> | 
|---|
 | 59 |                      | 
|---|
 | 60 |                         <tr class="prop"> | 
|---|
 | 61 |                             <td valign="top" class="name">Comment:</td> | 
|---|
 | 62 |                              | 
|---|
| [93] | 63 |                             <td valign="top" class="value">${fieldValue(bean:taskModificationInstance, field:'comment')}</td> | 
|---|
| [66] | 64 |                              | 
|---|
 | 65 |                         </tr> | 
|---|
 | 66 |                      | 
|---|
 | 67 |                     </tbody> | 
|---|
 | 68 |                 </table> | 
|---|
 | 69 |             </div> | 
|---|
 | 70 |             <div class="buttons"> | 
|---|
 | 71 |                 <g:form> | 
|---|
| [93] | 72 |                     <input type="hidden" name="id" value="${taskModificationInstance?.id}" /> | 
|---|
| [66] | 73 |                     <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> | 
|---|
 | 74 |                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> | 
|---|
 | 75 |                 </g:form> | 
|---|
 | 76 |             </div> | 
|---|
 | 77 |         </div> | 
|---|
 | 78 |     </body> | 
|---|
 | 79 | </html> | 
|---|