Changeset 175 for trunk/grails-app/views/inventoryLocation/list.gsp
- Timestamp:
- Oct 29, 2009, 8:30:58 PM (16 years ago)
- Location:
- trunk/grails-app/views/inventoryLocation
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryLocation/list.gsp
r151 r175 5 5 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 6 6 <meta name="layout" content="main" /> 7 <title> StoreLocation List</title>7 <title>InventoryLocation List</title> 8 8 </head> 9 9 <body> 10 10 <div class="nav"> 11 11 <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span> 12 <span class="menuButton"><g:link class="create" action="create">New StoreLocation</g:link></span>12 <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span> 13 13 </div> 14 14 <div class="body"> 15 <h1> StoreLocation List</h1>15 <h1>InventoryLocation List</h1> 16 16 <g:if test="${flash.message}"> 17 17 <div class="message">${flash.message}</div> … … 24 24 <g:sortableColumn property="id" title="Id" /> 25 25 26 <g:sortableColumn property=" bin" title="Bin" />26 <g:sortableColumn property="name" title="Name" /> 27 27 28 28 <th>Inventory Store</th> … … 33 33 </thead> 34 34 <tbody> 35 <g:each in="${ storeLocationInstanceList}" status="i" var="storeLocationInstance">35 <g:each in="${inventoryLocationInstanceList}" status="i" var="inventoryLocationInstance"> 36 36 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 37 37 38 <td><g:link action="show" id="${ storeLocationInstance.id}">${fieldValue(bean:storeLocationInstance, field:'id')}</g:link></td>38 <td><g:link action="show" id="${inventoryLocationInstance.id}">${fieldValue(bean:inventoryLocationInstance, field:'id')}</g:link></td> 39 39 40 <td>${fieldValue(bean: storeLocationInstance, field:'bin')}</td>40 <td>${fieldValue(bean:inventoryLocationInstance, field:'name')}</td> 41 41 42 <td>${fieldValue(bean: storeLocationInstance, field:'inventoryStore')}</td>42 <td>${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')}</td> 43 43 44 <td>${fieldValue(bean: storeLocationInstance, field:'isActive')}</td>44 <td>${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td> 45 45 46 46 </tr> … … 50 50 </div> 51 51 <div class="paginateButtons"> 52 <g:paginate total="${ storeLocationInstanceTotal}" />52 <g:paginate total="${inventoryLocationInstanceTotal}" /> 53 53 </div> 54 54 </div>
Note: See TracChangeset
for help on using the changeset viewer.