| [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> | 
|---|
| [139] | 8 |         <nav:resources override="true"/> | 
|---|
| [116] | 9 |     </head> | 
|---|
 | 10 |     <body> | 
|---|
 | 11 |         <div class="nav"> | 
|---|
| [139] | 12 |             <nav:renderSubItems group="nav"/> | 
|---|
| [116] | 13 |         </div> | 
|---|
 | 14 |         <div class="body"> | 
|---|
 | 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> | 
|---|
| [116] | 32 |                          | 
|---|
| [124] | 33 |  | 
|---|
 | 34 |                             <th></th> | 
|---|
| [116] | 35 |                          | 
|---|
 | 36 |                         </tr> | 
|---|
 | 37 |                     </thead> | 
|---|
 | 38 |                     <tbody> | 
|---|
 | 39 |                     <g:each in="${inventoryItemInstanceList}" status="i" var="inventoryItemInstance"> | 
|---|
| [124] | 40 |                         <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"'/> | 
|---|
| [116] | 41 |                          | 
|---|
| [124] | 42 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'id')}</td> | 
|---|
| [116] | 43 |                          | 
|---|
 | 44 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'name')}</td> | 
|---|
 | 45 |                          | 
|---|
 | 46 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'description')}</td> | 
|---|
 | 47 |                          | 
|---|
| [175] | 48 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'unitsInStock')}</td> | 
|---|
| [116] | 49 |                          | 
|---|
| [175] | 50 |                             <td>${fieldValue(bean:inventoryItemInstance, field:'unitOfMeasure')}</td> | 
|---|
| [124] | 51 |  | 
|---|
 | 52 |                             <td> | 
|---|
 | 53 |                                 <g:link action="show" id="${inventoryItemInstance.id}"> | 
|---|
| [182] | 54 |                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> | 
|---|
| [124] | 55 |                                 </g:link> | 
|---|
 | 56 |                             </td> | 
|---|
| [116] | 57 |                          | 
|---|
 | 58 |                         </tr> | 
|---|
 | 59 |                     </g:each> | 
|---|
 | 60 |                     </tbody> | 
|---|
 | 61 |                 </table> | 
|---|
 | 62 |             </div> | 
|---|
 | 63 |             <div class="paginateButtons"> | 
|---|
 | 64 |                 <g:paginate total="${inventoryItemInstanceTotal}" /> | 
|---|
 | 65 |             </div> | 
|---|
 | 66 |         </div> | 
|---|
 | 67 |     </body> | 
|---|
 | 68 | </html> | 
|---|