Changeset 122 for trunk/grails-app/views/lifePlan/show.gsp
- Timestamp:
- May 1, 2009, 3:27:41 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/lifePlan/show.gsp
r118 r122 31 31 32 32 <tr class="prop"> 33 <td valign="top" class="name">Asset:</td>34 35 <td valign="top" class="value"><g:link controller="asset" action="show" id="${lifePlanInstance?.asset?.id}">${lifePlanInstance?.asset?.encodeAsHTML()}</g:link></td>36 37 </tr>38 39 <tr class="prop">40 <td valign="top" class="name">Form:</td>41 42 <td valign="top" class="value"><g:link controller="form" action="show" id="${lifePlanInstance?.form?.id}">${lifePlanInstance?.form?.encodeAsHTML()}</g:link></td>43 44 </tr>45 46 <tr class="prop">47 <td valign="top" class="name">Frequency:</td>48 49 <td valign="top" class="value"><g:link controller="frequency" action="show" id="${lifePlanInstance?.frequency?.id}">${lifePlanInstance?.frequency?.encodeAsHTML()}</g:link></td>50 51 </tr>52 53 <tr class="prop">54 <td valign="top" class="name">Asset Type:</td>55 56 <td valign="top" class="value"><g:link controller="assetType" action="show" id="${lifePlanInstance?.assetType?.id}">${lifePlanInstance?.assetType?.encodeAsHTML()}</g:link></td>57 58 </tr>59 60 <tr class="prop">61 <td valign="top" class="name">Assembly:</td>62 63 <td valign="top" class="value"><g:link controller="assembly" action="show" id="${lifePlanInstance?.assembly?.id}">${lifePlanInstance?.assembly?.encodeAsHTML()}</g:link></td>64 65 </tr>66 67 <tr class="prop">68 <td valign="top" class="name">Sub Assembly:</td>69 70 <td valign="top" class="value"><g:link controller="subAssembly" action="show" id="${lifePlanInstance?.subAssembly?.id}">${lifePlanInstance?.subAssembly?.encodeAsHTML()}</g:link></td>71 72 </tr>73 74 <tr class="prop">75 <td valign="top" class="name">Component Item:</td>76 77 <td valign="top" class="value"><g:link controller="componentItem" action="show" id="${lifePlanInstance?.componentItem?.id}">${lifePlanInstance?.componentItem?.encodeAsHTML()}</g:link></td>78 79 </tr>80 81 <tr class="prop">82 33 <td valign="top" class="name">Description:</td> 83 34 … … 94 45 95 46 <tr class="prop"> 96 <td valign="top" class="name">Maintenance Action:</td>97 98 <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'maintenanceAction')}</td>99 100 </tr>101 102 <tr class="prop">103 47 <td valign="top" class="name">Name:</td> 104 48 105 49 <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'name')}</td> 106 107 </tr>108 109 <tr class="prop">110 <td valign="top" class="name">Notes:</td>111 112 <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'notes')}</td>113 114 </tr>115 116 <tr class="prop">117 <td valign="top" class="name">Resource Number:</td>118 119 <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'resourceNumber')}</td>120 121 </tr>122 123 <tr class="prop">124 <td valign="top" class="name">System Sections:</td>125 126 <td valign="top" style="text-align:left;" class="value">127 <ul>128 <g:each var="s" in="${lifePlanInstance.systemSections}">129 <li><g:link controller="systemSection" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>130 </g:each>131 </ul>132 </td>133 134 </tr>135 136 <tr class="prop">137 <td valign="top" class="name">Time In Hours:</td>138 139 <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'timeInHours')}</td>140 50 141 51 </tr>
Note: See TracChangeset
for help on using the changeset viewer.