| [118] | 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>Asset List</title> | 
|---|
| [139] | 8 |         <nav:resources override="true"/> | 
|---|
| [118] | 9 |     </head> | 
|---|
 | 10 |     <body> | 
|---|
 | 11 |         <div class="nav"> | 
|---|
| [139] | 12 |             <nav:renderSubItems group="nav"/> | 
|---|
| [118] | 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" /> | 
|---|
| [124] | 24 |  | 
|---|
 | 25 |                              <g:sortableColumn property="name" title="Name" /> | 
|---|
 | 26 |  | 
|---|
 | 27 |                              <g:sortableColumn property="assetType" title="Asset Type" /> | 
|---|
| [118] | 28 |                          | 
|---|
| [124] | 29 |                                 <g:sortableColumn property="systemSection" title="System Section" /> | 
|---|
 | 30 |  | 
|---|
 | 31 |                             <g:sortableColumn property="isActive" title="Is Active" /> | 
|---|
 | 32 |  | 
|---|
 | 33 |                             <th></th> | 
|---|
| [118] | 34 |                              | 
|---|
 | 35 |                         </tr> | 
|---|
 | 36 |                     </thead> | 
|---|
 | 37 |                     <tbody> | 
|---|
 | 38 |                     <g:each in="${assetInstanceList}" status="i" var="assetInstance"> | 
|---|
| [124] | 39 |                         <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'/> | 
|---|
| [118] | 40 |                          | 
|---|
| [124] | 41 |                             <td>${fieldValue(bean:assetInstance, field:'id')}</td> | 
|---|
 | 42 |  | 
|---|
 | 43 |                             <td>${fieldValue(bean:assetInstance, field:'name')}</td>                         | 
|---|
 | 44 |  | 
|---|
| [118] | 45 |                             <td>${fieldValue(bean:assetInstance, field:'assetType')}</td> | 
|---|
| [124] | 46 |  | 
|---|
 | 47 |                             <td>${fieldValue(bean:assetInstance, field:'systemSection')}</td> | 
|---|
 | 48 |  | 
|---|
| [118] | 49 |                             <td>${fieldValue(bean:assetInstance, field:'isActive')}</td> | 
|---|
| [124] | 50 |  | 
|---|
 | 51 |                             <td> | 
|---|
 | 52 |                                 <g:link action="show" id="${assetInstance.id}"> | 
|---|
| [182] | 53 |                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> | 
|---|
| [124] | 54 |                                 </g:link> | 
|---|
 | 55 |                             </td> | 
|---|
| [118] | 56 |                          | 
|---|
 | 57 |                         </tr> | 
|---|
 | 58 |                     </g:each> | 
|---|
 | 59 |                     </tbody> | 
|---|
 | 60 |                 </table> | 
|---|
 | 61 |             </div> | 
|---|
 | 62 |             <div class="paginateButtons"> | 
|---|
 | 63 |                 <g:paginate total="${assetInstanceTotal}" /> | 
|---|
 | 64 |             </div> | 
|---|
 | 65 |         </div> | 
|---|
 | 66 |     </body> | 
|---|
 | 67 | </html> | 
|---|