Ignore:
Timestamp:
Mar 24, 2009, 3:57:13 PM (15 years ago)
Author:
gav
Message:

Continue detailing Task views.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/TaskRewrite/src/grails-app/views/taskDetailed/show.gsp

    r85 r86  
    121121                            <td valign="top" class="name">Parent Task:</td>
    122122                           
    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>
    124124                           
    125125                        </tr>
     
    131131                                <ul>
    132132                                <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>
    134134                                </g:each>
    135135                                </ul>
Note: See TracChangeset for help on using the changeset viewer.