Changeset 268 for trunk/grails-app/views/department/show.gsp
- Timestamp:
- Jan 14, 2010, 10:51:03 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/department/show.gsp
r178 r268 44 44 45 45 <tr class="prop"> 46 <td valign="top" class="name">Cost Code:</td>47 48 <td valign="top" class="value">${fieldValue(bean:departmentInstance, field:'costCode')}</td>49 50 </tr>51 52 <tr class="prop">53 46 <td valign="top" class="name">Is Active:</td> 54 47 … … 58 51 59 52 <tr class="prop"> 60 <td valign="top" class="name"> Persons:</td>53 <td valign="top" class="name">Department Extended Attributes:</td> 61 54 62 55 <td valign="top" style="text-align:left;" class="value"> 63 56 <ul> 64 <g:each var=" p" in="${departmentInstance.persons}">65 <li><g:link controller=" person" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li>57 <g:each var="d" in="${departmentInstance.departmentExtendedAttributes}"> 58 <li><g:link controller="departmentExtendedAttribute" action="show" id="${d.id}">${d?.encodeAsHTML()}</g:link></li> 66 59 </g:each> 67 60 </ul> … … 71 64 72 65 <tr class="prop"> 73 <td valign="top" class="name">S ystem Sections:</td>66 <td valign="top" class="name">Sections:</td> 74 67 75 68 <td valign="top" style="text-align:left;" class="value"> 76 69 <ul> 77 <g:each var="s" in="${departmentInstance.s ystemSections}">78 <li><g:link controller="s ystemSection" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>70 <g:each var="s" in="${departmentInstance.sections}"> 71 <li><g:link controller="section" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 79 72 </g:each> 80 73 </ul>
Note: See TracChangeset
for help on using the changeset viewer.