Ignore:
Timestamp:
May 19, 2010, 6:12:42 PM (13 years ago)
Author:
roberth
Message:

Updated studies list and added institute and department properties to person affiliations

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/personAffiliation/list.gsp

    r382 r442  
    1919                        <tr>
    2020                       
    21                             <g:sortableColumn property="name" title="${message(code: 'personAffiliation.name.label', default: 'Name')}" />
     21                            <g:sortableColumn property="institute" title="${message(code: 'personAffiliation.institute.label', default: 'Institute')}" />
     22                            <g:sortableColumn property="department" title="${message(code: 'personAffiliation.department.label', default: 'Department')}" />
    2223                       
    2324                        </tr>
     
    2728                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
    2829                       
    29                             <td><g:link action="show" id="${personAffiliationInstance.id}">${fieldValue(bean: personAffiliationInstance, field: "name")}</g:link></td>
    30                        
     30                            <td><g:link action="show" id="${personAffiliationInstance.id}">${fieldValue(bean: personAffiliationInstance, field: "institute")}</g:link></td>
     31                            <td>${fieldValue(bean: personAffiliationInstance, field: "department")}</td>
    3132                        </tr>
    3233                    </g:each>
Note: See TracChangeset for help on using the changeset viewer.