Changeset 98 for trunk/src/grails-app/views/entryDetailed/show.gsp
- Timestamp:
- Apr 4, 2009, 6:41:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/entryDetailed/show.gsp
r92 r98 33 33 <td valign="top" class="name">Task:</td> 34 34 35 <td valign="top" class="value"><g:link controller="task " action="show" id="${entryInstance?.task?.id}">${entryInstance?.task?.encodeAsHTML()}</g:link></td>35 <td valign="top" class="value"><g:link controller="taskDetailed" action="show" id="${entryInstance?.task?.id}">${entryInstance?.task?.encodeAsHTML()}</g:link></td> 36 36 37 37 </tr> … … 75 75 <td valign="top" class="name">Entered By:</td> 76 76 77 <td valign="top" class="value"> <g:link controller="person" action="show" id="${entryInstance?.enteredBy?.id}">${entryInstance?.enteredBy?.encodeAsHTML()}</g:link></td>77 <td valign="top" class="value">${entryInstance?.enteredBy?.encodeAsHTML()}</td> 78 78 79 79 </tr> … … 82 82 <td valign="top" class="name">Entry Type:</td> 83 83 84 <td valign="top" class="value"> <g:link controller="entryType" action="show" id="${entryInstance?.entryType?.id}">${entryInstance?.entryType?.encodeAsHTML()}</g:link></td>84 <td valign="top" class="value">${entryInstance?.entryType?.encodeAsHTML()}</td> 85 85 86 86 </tr>
Note: See TracChangeset
for help on using the changeset viewer.