Changeset 125 for trunk/grails-app/views/inventoryItemDetailed/show.gsp
- Timestamp:
- May 4, 2009, 4:49:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryItemDetailed/show.gsp
r124 r125 75 75 <td valign="top" class="name">Inventory Group:</td> 76 76 77 <td valign="top" class="value"> <g:link controller="inventoryGroup" action="show" id="${inventoryItemInstance?.inventoryGroup?.id}">${inventoryItemInstance?.inventoryGroup?.encodeAsHTML()}</g:link></td>77 <td valign="top" class="value">${inventoryItemInstance?.inventoryGroup?.encodeAsHTML()}</td> 78 78 79 79 </tr> … … 82 82 <td valign="top" class="name">Inventory Type:</td> 83 83 84 <td valign="top" class="value"> <g:link controller="inventoryType" action="show" id="${inventoryItemInstance?.inventoryType?.id}">${inventoryItemInstance?.inventoryType?.encodeAsHTML()}</g:link></td>84 <td valign="top" class="value">${inventoryItemInstance?.inventoryType?.encodeAsHTML()}</td> 85 85 86 86 </tr> … … 89 89 <td valign="top" class="name">Unit Of Measure:</td> 90 90 91 <td valign="top" class="value"> <g:link controller="unitOfMeasure" action="show" id="${inventoryItemInstance?.unitOfMeasure?.id}">${inventoryItemInstance?.unitOfMeasure?.encodeAsHTML()}</g:link></td>91 <td valign="top" class="value">${inventoryItemInstance?.unitOfMeasure?.encodeAsHTML()}</td> 92 92 93 93 </tr> … … 179 179 <ul> 180 180 <g:each var="s" in="${inventoryItemInstance.storedItems}"> 181 <li><g:link controller="storedItem " action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>181 <li><g:link controller="storedItemDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> 182 182 </g:each> 183 183 </ul>
Note: See TracChangeset
for help on using the changeset viewer.