Changeset 39 for trunk/src/grails-app/views/entry/show.gsp
- Timestamp:
- Jan 27, 2009, 11:02:59 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/entry/show.gsp
r25 r39 31 31 32 32 <tr class="prop"> 33 <td valign="top" class="name">Task:</td> 34 35 <td valign="top" class="value"><g:link controller="task" action="show" id="${entryInstance?.task?.id}">${entryInstance?.task?.encodeAsHTML()}</g:link></td> 36 37 </tr> 38 39 <tr class="prop"> 33 40 <td valign="top" class="name">Comments:</td> 34 41 … … 45 52 46 53 <tr class="prop"> 47 <td valign="top" class="name">Duration :</td>54 <td valign="top" class="name">Duration Hours:</td> 48 55 49 <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'duration')}</td> 56 <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'durationHours')}</td> 57 58 </tr> 59 60 <tr class="prop"> 61 <td valign="top" class="name">Duration Minutes:</td> 62 63 <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'durationMinutes')}</td> 50 64 51 65 </tr> … … 65 79 </tr> 66 80 67 <tr class="prop">68 <td valign="top" class="name">Persons:</td>69 70 <td valign="top" class="value">${fieldValue(bean:entryInstance, field:'persons')}</td>71 72 </tr>73 74 <tr class="prop">75 <td valign="top" class="name">Task:</td>76 77 <td valign="top" class="value"><g:link controller="task" action="show" id="${entryInstance?.task?.id}">${entryInstance?.task?.encodeAsHTML()}</g:link></td>78 79 </tr>80 81 81 </tbody> 82 82 </table>
Note: See TracChangeset
for help on using the changeset viewer.