[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>Show Asset</title> |
---|
[139] | 8 | <nav:resources override="true"/> |
---|
[278] | 9 | <g:javascript src="overlayPane.js" /> |
---|
[118] | 10 | </head> |
---|
| 11 | <body> |
---|
| 12 | <div class="nav"> |
---|
[139] | 13 | <nav:renderSubItems group="nav"/> |
---|
[118] | 14 | </div> |
---|
| 15 | <div class="body"> |
---|
| 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
| 19 | <div class="dialog"> |
---|
| 20 | <table> |
---|
| 21 | <tbody> |
---|
[278] | 22 | |
---|
[118] | 23 | <tr class="prop"> |
---|
| 24 | <td valign="top" class="name">Id:</td> |
---|
[278] | 25 | |
---|
[118] | 26 | <td valign="top" class="value">${fieldValue(bean:assetInstance, field:'id')}</td> |
---|
[278] | 27 | |
---|
[118] | 28 | </tr> |
---|
[278] | 29 | |
---|
[118] | 30 | <tr class="prop"> |
---|
[271] | 31 | <td valign="top" class="name">Asset:</td> |
---|
| 32 | |
---|
| 33 | <td valign="top" style="text-align:left;" class="value"> |
---|
[278] | 34 | <g:render template="/shared/assetTree" /> |
---|
[271] | 35 | </td> |
---|
| 36 | |
---|
[118] | 37 | </tr> |
---|
[278] | 38 | |
---|
| 39 | <tr class="prop"> |
---|
| 40 | <td valign="top" class="name">Description:</td> |
---|
| 41 | |
---|
| 42 | <td valign="top" class="value">${fieldValue(bean:assetInstance, field:'description')}</td> |
---|
| 43 | |
---|
| 44 | </tr> |
---|
| 45 | |
---|
| 46 | <tr class="prop"> |
---|
| 47 | <td valign="top" class="name">Is Active:</td> |
---|
| 48 | |
---|
| 49 | <td valign="top" class="value">${fieldValue(bean:assetInstance, field:'isActive')}</td> |
---|
| 50 | |
---|
| 51 | </tr> |
---|
| 52 | |
---|
| 53 | <tr class="prop"> |
---|
| 54 | <td valign="top" class="name">Section:</td> |
---|
| 55 | |
---|
| 56 | <td valign="top" class="value"><g:link controller="sectionDetailed" action="show" id="${assetInstance?.section?.id}">${assetInstance?.section?.encodeAsHTML()}</g:link></td> |
---|
| 57 | |
---|
| 58 | </tr> |
---|
| 59 | |
---|
| 60 | <tr class="prop"> |
---|
| 61 | <td valign="top" class="name">Asset Extended Attributes:</td> |
---|
| 62 | |
---|
| 63 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 64 | <ul> |
---|
| 65 | <g:each var="a" in="${assetInstance.assetExtendedAttributes}"> |
---|
| 66 | <li><g:link controller="assetExtendedAttributeDetailed" action="edit" id="${a.id}">${a?.encodeAsHTML()}</g:link></li> |
---|
| 67 | </g:each> |
---|
| 68 | </ul> |
---|
| 69 | </td> |
---|
| 70 | |
---|
| 71 | </tr> |
---|
| 72 | |
---|
| 73 | <tr class="prop"> |
---|
| 74 | <td valign="top" class="name">Maintenance Actions:</td> |
---|
| 75 | |
---|
| 76 | <td valign="top" style="text-align:left;" class="value"> |
---|
| 77 | <ul> |
---|
| 78 | <g:each var="m" in="${assetInstance.maintenanceActions}"> |
---|
| 79 | <li><g:link controller="maintenanceActionDetailed" action="edit" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> |
---|
| 80 | </g:each> |
---|
| 81 | </ul> |
---|
| 82 | </td> |
---|
| 83 | |
---|
| 84 | </tr> |
---|
| 85 | |
---|
[118] | 86 | </tbody> |
---|
| 87 | </table> |
---|
| 88 | </div> |
---|
| 89 | <div class="buttons"> |
---|
| 90 | <g:form> |
---|
| 91 | <input type="hidden" name="id" value="${assetInstance?.id}" /> |
---|
| 92 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 93 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 94 | </g:form> |
---|
| 95 | </div> |
---|
| 96 | </div> |
---|
| 97 | </body> |
---|
| 98 | </html> |
---|