Changeset 377 for trunk/grails-app/views/inventoryLocationDetailed/show.gsp
- Timestamp:
- Feb 18, 2010, 3:09:18 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryLocationDetailed/show.gsp
r178 r377 6 6 <meta name="layout" content="main" /> 7 7 <title>Show InventoryLocation</title> 8 <nav:resources override="true"/> 8 9 </head> 9 10 <body> 10 11 <div class="nav"> 11 <span class="menuButton"><g:link class="list" action="list">InventoryLocation List</g:link></span> 12 <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span> 12 <nav:renderSubItems group="navAlt"/> 13 13 </div> 14 14 <div class="body"> 15 <h1>Show InventoryLocation</h1>16 15 <g:if test="${flash.message}"> 17 16 <div class="message">${flash.message}</div> … … 37 36 38 37 <tr class="prop"> 39 <td valign="top" class="name">Inventory Items:</td>40 41 <td valign="top" style="text-align:left;" class="value">42 <ul>43 <g:each var="i" in="${inventoryLocationInstance.inventoryItems}">44 <li><g:link controller="inventoryItem" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li>45 </g:each>46 </ul>47 </td>48 49 </tr>50 51 <tr class="prop">52 38 <td valign="top" class="name">Inventory Store:</td> 53 39 54 <td valign="top" class="value"><g:link controller="inventoryStore " action="show" id="${inventoryLocationInstance?.inventoryStore?.id}">${inventoryLocationInstance?.inventoryStore?.encodeAsHTML()}</g:link></td>40 <td valign="top" class="value"><g:link controller="inventoryStoreDetailed" action="show" id="${inventoryLocationInstance?.inventoryStore?.id}">${inventoryLocationInstance?.inventoryStore?.encodeAsHTML()}</g:link></td> 55 41 56 42 </tr> … … 60 46 61 47 <td valign="top" class="value">${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td> 48 49 </tr> 50 51 <tr class="prop"> 52 <td valign="top" class="name">Inventory Items:</td> 53 54 <td valign="top" style="text-align:left;" class="value"> 55 <ul> 56 <g:each var="i" in="${inventoryLocationInstance.inventoryItems}"> 57 <li><g:link controller="inventoryItemDetailed" action="show" id="${i.id}">${i?.encodeAsHTML()}</g:link></li> 58 </g:each> 59 </ul> 60 </td> 62 61 63 62 </tr>
Note: See TracChangeset
for help on using the changeset viewer.