Changeset 442 for trunk/grails-app/views/personAffiliation/list.gsp
- Timestamp:
- May 19, 2010, 6:12:42 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/personAffiliation/list.gsp
r382 r442 19 19 <tr> 20 20 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')}" /> 22 23 23 24 </tr> … … 27 28 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 28 29 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> 31 32 </tr> 32 33 </g:each>
Note: See TracChangeset
for help on using the changeset viewer.