Changeset 288 for trunk/grails-app/views/departmentDetailed/edit.gsp
- Timestamp:
- Jan 22, 2010, 8:52:22 AM (15 years ago)
- Location:
- trunk/grails-app/views/departmentDetailed
- Files:
-
- 1 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>
Note: See TracChangeset
for help on using the changeset viewer.