- Timestamp:
- Mar 24, 2009, 3:57:13 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/TaskRewrite/src/grails-app/views/taskDetailed/show.gsp
r85 r86 121 121 <td valign="top" class="name">Parent Task:</td> 122 122 123 <td valign="top" class="value"><g:link controller="task " action="show" id="${taskInstance?.parentTask?.id}">${taskInstance?.parentTask?.encodeAsHTML()}</g:link></td>123 <td valign="top" class="value"><g:link controller="taskDetailed" action="show" id="${taskInstance?.parentTask?.id}">${taskInstance?.parentTask?.encodeAsHTML()}</g:link></td> 124 124 125 125 </tr> … … 131 131 <ul> 132 132 <g:each var="s" in="${taskInstance.subTasks}"> 133 <li><g:link controller="task " action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>133 <li><g:link controller="taskDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 134 134 </g:each> 135 135 </ul>
Note: See TracChangeset
for help on using the changeset viewer.