[122] | 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>AssetExtendedAttribute List</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
| 11 | <span class="menuButton"><a class="home" href="${createLinkTo(dir:'')}">Home</a></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New AssetExtendedAttribute</g:link></span> |
---|
| 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <h1>AssetExtendedAttribute List</h1> |
---|
| 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
| 19 | <div class="list"> |
---|
| 20 | <table> |
---|
| 21 | <thead> |
---|
| 22 | <tr> |
---|
| 23 | |
---|
| 24 | <g:sortableColumn property="id" title="Id" /> |
---|
| 25 | |
---|
[124] | 26 | <th>Asset</th> |
---|
| 27 | |
---|
[122] | 28 | <th>Asset Extended Attribute Type</th> |
---|
| 29 | |
---|
| 30 | <g:sortableColumn property="isActive" title="Is Active" /> |
---|
| 31 | |
---|
| 32 | <g:sortableColumn property="value" title="Value" /> |
---|
| 33 | |
---|
| 34 | </tr> |
---|
| 35 | </thead> |
---|
| 36 | <tbody> |
---|
| 37 | <g:each in="${assetExtendedAttributeInstanceList}" status="i" var="assetExtendedAttributeInstance"> |
---|
| 38 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
---|
| 39 | |
---|
| 40 | <td><g:link action="show" id="${assetExtendedAttributeInstance.id}">${fieldValue(bean:assetExtendedAttributeInstance, field:'id')}</g:link></td> |
---|
| 41 | |
---|
[124] | 42 | <td>${fieldValue(bean:assetExtendedAttributeInstance, field:'asset')}</td> |
---|
| 43 | |
---|
[122] | 44 | <td>${fieldValue(bean:assetExtendedAttributeInstance, field:'assetExtendedAttributeType')}</td> |
---|
| 45 | |
---|
| 46 | <td>${fieldValue(bean:assetExtendedAttributeInstance, field:'isActive')}</td> |
---|
| 47 | |
---|
| 48 | <td>${fieldValue(bean:assetExtendedAttributeInstance, field:'value')}</td> |
---|
| 49 | |
---|
| 50 | </tr> |
---|
| 51 | </g:each> |
---|
| 52 | </tbody> |
---|
| 53 | </table> |
---|
| 54 | </div> |
---|
| 55 | <div class="paginateButtons"> |
---|
| 56 | <g:paginate total="${assetExtendedAttributeInstanceTotal}" /> |
---|
| 57 | </div> |
---|
| 58 | </div> |
---|
| 59 | </body> |
---|
| 60 | </html> |
---|