Changeset 122 for trunk/grails-app/views/assetType/show.gsp
- Timestamp:
- May 1, 2009, 3:27:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/assetType/show.gsp
r118 r122 44 44 45 45 <tr class="prop"> 46 <td valign="top" class="name">Asset Extended Attributes:</td> 47 48 <td valign="top" style="text-align:left;" class="value"> 49 <ul> 50 <g:each var="a" in="${assetTypeInstance.assetExtendedAttributes}"> 51 <li><g:link controller="assetExtendedAttribute" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li> 52 </g:each> 53 </ul> 54 </td> 55 56 </tr> 57 58 <tr class="prop"> 46 59 <td valign="top" class="name">Assets:</td> 47 60 … … 71 84 72 85 <tr class="prop"> 73 <td valign="top" class="name"> Lifeplan:</td>86 <td valign="top" class="name">Maintenance Actions:</td> 74 87 75 <td valign="top" class="value"><g:link controller="lifePlan" action="show" id="${assetTypeInstance?.lifeplan?.id}">${assetTypeInstance?.lifeplan?.encodeAsHTML()}</g:link></td> 88 <td valign="top" style="text-align:left;" class="value"> 89 <ul> 90 <g:each var="m" in="${assetTypeInstance.maintenanceActions}"> 91 <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> 92 </g:each> 93 </ul> 94 </td> 76 95 77 96 </tr> … … 81 100 82 101 <td valign="top" class="value">${fieldValue(bean:assetTypeInstance, field:'name')}</td> 83 84 </tr>85 86 <tr class="prop">87 <td valign="top" class="name">System Section:</td>88 89 <td valign="top" class="value"><g:link controller="systemSection" action="show" id="${assetTypeInstance?.systemSection?.id}">${assetTypeInstance?.systemSection?.encodeAsHTML()}</g:link></td>90 102 91 103 </tr>
Note: See TracChangeset
for help on using the changeset viewer.