| [116] | 1 |  | 
|---|
 | 2 |  | 
|---|
 | 3 | <html> | 
|---|
 | 4 |     <head> | 
|---|
 | 5 |         <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | 
|---|
 | 6 |         <meta name="layout" content="main" /> | 
|---|
 | 7 |         <title>InventoryItem List</title> | 
|---|
 | 8 |     </head> | 
|---|
 | 9 |     <body> | 
|---|
 | 10 |         <div class="nav"> | 
|---|
 | 11 |             <span class="menuButton"><g:link class="create" action="create">New InventoryItem</g:link></span> | 
|---|
 | 12 |         </div> | 
|---|
 | 13 |         <div class="body"> | 
|---|
 | 14 |             <h1>InventoryItem List</h1> | 
|---|
 | 15 |             <g:if test="${flash.message}"> | 
|---|
 | 16 |             <div class="message">${flash.message}</div> | 
|---|
 | 17 |             </g:if> | 
|---|
 | 18 |             <div class="list"> | 
|---|
 | 19 |                 <table> | 
|---|
 | 20 |                     <thead> | 
|---|
 | 21 |                         <tr> | 
|---|
 | 22 |                          | 
|---|
 | 23 |                                 <g:sortableColumn property="id" title="Id" /> | 
|---|
 | 24 |                          | 
|---|
 | 25 |                                 <g:sortableColumn property="name" title="Name" /> | 
|---|
 | 26 |                          | 
|---|
 | 27 |                                 <g:sortableColumn property="description" title="Description" /> | 
|---|
 | 28 |                          | 
|---|
| [175] | 29 |                                 <g:sortableColumn property="unitsInStock" title="Units In Stock" /> | 
|---|
 | 30 |                          | 
|---|
 | 31 |                                 <th>Unit Of Measure</th> | 
|---|
 | 32 |                              | 
|---|
| [116] | 33 |                                 <g:sortableColumn property="reorderPoint" title="Reorder Point" /> | 
|---|
 | 34 |                          | 
|---|
 | 35 |                         </tr> | 
|---|
 | 36 |                     </thead> | 
|---|
 | 37 |                     <tbody> | 
|---|
 | 38 |                     <g:each in="${inventoryItemInstanceList}" status="i" var="inventoryItemInstance"> | 
|---|
 | 39 |                         <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> | 
|---|
 | 40 |                          | 
|---|
 | 41 |                             <td><g:link action="show" id="${inventoryItemInstance.id}">${fieldValue(bean:inventoryItemInstance, field:'id')}</g:link></td> | 
|---|
 | 42 |                          | 
|---|
 | 43 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'name')}</td> | 
|---|
 | 44 |                          | 
|---|
 | 45 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'description')}</td> | 
|---|
 | 46 |                          | 
|---|
| [175] | 47 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'unitsInStock')}</td> | 
|---|
| [116] | 48 |                          | 
|---|
| [175] | 49 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'unitOfMeasure')}</td> | 
|---|
| [116] | 50 |                          | 
|---|
| [175] | 51 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'reorderPoint')}</td> | 
|---|
| [116] | 52 |                          | 
|---|
 | 53 |                         </tr> | 
|---|
 | 54 |                     </g:each> | 
|---|
 | 55 |                     </tbody> | 
|---|
 | 56 |                 </table> | 
|---|
 | 57 |             </div> | 
|---|
 | 58 |             <div class="paginateButtons"> | 
|---|
 | 59 |                 <g:paginate total="${inventoryItemInstanceTotal}" /> | 
|---|
 | 60 |             </div> | 
|---|
 | 61 |         </div> | 
|---|
 | 62 |     </body> | 
|---|
 | 63 | </html> | 
|---|