Last change
on this file since 353 was
293,
checked in by gav, 15 years ago
|
Removed unused list views from AssetExtendedAttribute and SubItemExtendedAttribute.
|
File size:
3.0 KB
|
Rev | Line | |
---|
[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>Show AssetExtendedAttribute</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[293] | 11 | <h1>Show Extended Attribute</h1> |
---|
[122] | 12 | </div> |
---|
| 13 | <div class="body"> |
---|
| 14 | <g:if test="${flash.message}"> |
---|
| 15 | <div class="message">${flash.message}</div> |
---|
| 16 | </g:if> |
---|
| 17 | <div class="dialog"> |
---|
| 18 | <table> |
---|
| 19 | <tbody> |
---|
| 20 | |
---|
| 21 | |
---|
| 22 | <tr class="prop"> |
---|
| 23 | <td valign="top" class="name">Id:</td> |
---|
| 24 | |
---|
| 25 | <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'id')}</td> |
---|
| 26 | |
---|
| 27 | </tr> |
---|
| 28 | |
---|
| 29 | <tr class="prop"> |
---|
[292] | 30 | <td valign="top" class="name">Value:</td> |
---|
[122] | 31 | |
---|
[292] | 32 | <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'value')}</td> |
---|
[122] | 33 | |
---|
| 34 | </tr> |
---|
| 35 | |
---|
| 36 | <tr class="prop"> |
---|
[292] | 37 | <td valign="top" class="name">Is Active:</td> |
---|
[122] | 38 | |
---|
[292] | 39 | <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'isActive')}</td> |
---|
[122] | 40 | |
---|
| 41 | </tr> |
---|
| 42 | |
---|
| 43 | <tr class="prop"> |
---|
[292] | 44 | <td valign="top" class="name">Asset:</td> |
---|
[122] | 45 | |
---|
[293] | 46 | <td valign="top" class="value"><g:link controller="assetDetailed" action="show" id="${assetExtendedAttributeInstance?.asset?.id}">${assetExtendedAttributeInstance?.asset?.encodeAsHTML()}</g:link></td> |
---|
[122] | 47 | |
---|
| 48 | </tr> |
---|
| 49 | |
---|
| 50 | <tr class="prop"> |
---|
[292] | 51 | <td valign="top" class="name">Extended Attribute Type:</td> |
---|
[122] | 52 | |
---|
[293] | 53 | <td valign="top" class="value"><g:link controller="extendedAttributeTypeDetailed" action="show" id="${assetExtendedAttributeInstance?.extendedAttributeType?.id}">${assetExtendedAttributeInstance?.extendedAttributeType?.encodeAsHTML()}</g:link></td> |
---|
[122] | 54 | |
---|
| 55 | </tr> |
---|
| 56 | |
---|
| 57 | </tbody> |
---|
| 58 | </table> |
---|
| 59 | </div> |
---|
| 60 | <div class="buttons"> |
---|
| 61 | <g:form> |
---|
| 62 | <input type="hidden" name="id" value="${assetExtendedAttributeInstance?.id}" /> |
---|
| 63 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
| 64 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 65 | </g:form> |
---|
| 66 | </div> |
---|
| 67 | </div> |
---|
| 68 | </body> |
---|
| 69 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.