Ignore:
Timestamp:
Jan 22, 2010, 8:52:22 AM (14 years ago)
Author:
gav
Message:

Regenerate and svn move the following to detailed controllers and views: Department, ExtendedAttributeType, Section, Site.
Secured with ROLE_Manager and ROLE_AppAdmin for now.

Location:
trunk/grails-app/views/departmentDetailed
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/departmentDetailed/edit.gsp

    r272 r288  
    6464<ul>
    6565<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>
    6767</g:each>
    6868</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>
    7070
    7171                                </td>
     
    9696<ul>
    9797<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>
    9999</g:each>
    100100</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>
    102102
    103103                                </td>
Note: See TracChangeset for help on using the changeset viewer.