Changeset 288 for trunk/grails-app/views/departmentDetailed
- Timestamp:
- Jan 22, 2010, 8:52:22 AM (15 years ago)
- Location:
- trunk/grails-app/views/departmentDetailed
- Files:
-
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/departmentDetailed/edit.gsp
r272 r288 64 64 <ul> 65 65 <g:each var="d" in="${departmentInstance?.departmentExtendedAttributes?}"> 66 <li><g:link controller="departmentExtendedAttribute " action="show" id="${d.id}">${d?.encodeAsHTML()}</g:link></li>66 <li><g:link controller="departmentExtendedAttributeDetailed" action="show" id="${d.id}">${d?.encodeAsHTML()}</g:link></li> 67 67 </g:each> 68 68 </ul> 69 <g:link controller="departmentExtendedAttribute " params="['department.id':departmentInstance?.id]" action="create">Add DepartmentExtendedAttribute</g:link>69 <g:link controller="departmentExtendedAttributeDetailed" params="['department.id':departmentInstance?.id]" action="create">Add DepartmentExtendedAttribute</g:link> 70 70 71 71 </td> … … 96 96 <ul> 97 97 <g:each var="s" in="${departmentInstance?.sections?}"> 98 <li><g:link controller="section " action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>98 <li><g:link controller="sectionDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 99 99 </g:each> 100 100 </ul> 101 <g:link controller="section " params="['department.id':departmentInstance?.id]" action="create">Add Section</g:link>101 <g:link controller="sectionDetailed" params="['department.id':departmentInstance?.id]" action="create">Add Section</g:link> 102 102 103 103 </td> -
trunk/grails-app/views/departmentDetailed/show.gsp
r272 r288 56 56 <ul> 57 57 <g:each var="d" in="${departmentInstance.departmentExtendedAttributes}"> 58 <li><g:link controller="departmentExtendedAttribute " action="show" id="${d.id}">${d?.encodeAsHTML()}</g:link></li>58 <li><g:link controller="departmentExtendedAttributeDetailed" action="show" id="${d.id}">${d?.encodeAsHTML()}</g:link></li> 59 59 </g:each> 60 60 </ul> … … 82 82 <ul> 83 83 <g:each var="s" in="${departmentInstance.sections}"> 84 <li><g:link controller="section " action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>84 <li><g:link controller="sectionDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 85 85 </g:each> 86 86 </ul>
Note: See TracChangeset
for help on using the changeset viewer.