Changeset 122 for trunk/grails-app/views/componentItem/show.gsp
- Timestamp:
- May 1, 2009, 3:27:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/componentItem/show.gsp
r118 r122 38 38 39 39 <tr class="prop"> 40 <td valign="top" class="name">Fmea Number:</td>41 42 <td valign="top" class="value">${fieldValue(bean:componentItemInstance, field:'fmeaNumber')}</td>43 44 </tr>45 46 <tr class="prop">47 40 <td valign="top" class="name">Is Active:</td> 48 41 … … 52 45 53 46 <tr class="prop"> 54 <td valign="top" class="name"> Lifeplan:</td>47 <td valign="top" class="name">Maintenance Actions:</td> 55 48 56 <td valign="top" class="value"><g:link controller="lifePlan" action="show" id="${componentItemInstance?.lifeplan?.id}">${componentItemInstance?.lifeplan?.encodeAsHTML()}</g:link></td> 49 <td valign="top" style="text-align:left;" class="value"> 50 <ul> 51 <g:each var="m" in="${componentItemInstance.maintenanceActions}"> 52 <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> 53 </g:each> 54 </ul> 55 </td> 57 56 58 57 </tr>
Note: See TracChangeset
for help on using the changeset viewer.