Ignore:
Timestamp:
Feb 22, 2010, 6:29:13 PM (14 years ago)
Author:
gav
Message:

Add address feature.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/person/show.gsp

    r295 r397  
    6060
    6161                <tr class="prop">
     62                    <td valign="top" class="name">Addresses:</td>
     63
     64                    <td  valign="top" class="value">
     65                        <ul>
     66                        <g:each var="i" in="${person.addresses}">
     67                            <li><g:link controller="addressDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>
     68                        </g:each>
     69                        </ul>
     70                    </td>
     71
     72                </tr>
     73
     74                <tr class="prop">
    6275                    <td valign="top" class="name">Employee ID:</td>
    6376                    <td valign="top" class="value">${person.employeeID}</td>
Note: See TracChangeset for help on using the changeset viewer.