source: trunk/grails-app/views/assetExtendedAttributeDetailed/show.gsp @ 292

Last change on this file since 292 was 292, checked in by gav, 14 years ago

Regen AssetExtendedAttribute controller and views.
Then copy over detailed controller and views and remove non detailed views and controllers.

File size: 3.3 KB
Line 
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">
11            <span class="menuButton"><g:link class="list" action="list">AssetExtendedAttribute List</g:link></span>
12            <span class="menuButton"><g:link class="create" action="create">New AssetExtendedAttribute</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Show AssetExtendedAttribute</h1>
16            <g:if test="${flash.message}">
17            <div class="message">${flash.message}</div>
18            </g:if>
19            <div class="dialog">
20                <table>
21                    <tbody>
22
23                   
24                        <tr class="prop">
25                            <td valign="top" class="name">Id:</td>
26                           
27                            <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'id')}</td>
28                           
29                        </tr>
30                   
31                        <tr class="prop">
32                            <td valign="top" class="name">Value:</td>
33                           
34                            <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'value')}</td>
35                           
36                        </tr>
37                   
38                        <tr class="prop">
39                            <td valign="top" class="name">Is Active:</td>
40                           
41                            <td valign="top" class="value">${fieldValue(bean:assetExtendedAttributeInstance, field:'isActive')}</td>
42                           
43                        </tr>
44                   
45                        <tr class="prop">
46                            <td valign="top" class="name">Asset:</td>
47                           
48                            <td valign="top" class="value"><g:link controller="asset" action="show" id="${assetExtendedAttributeInstance?.asset?.id}">${assetExtendedAttributeInstance?.asset?.encodeAsHTML()}</g:link></td>
49                           
50                        </tr>
51                   
52                        <tr class="prop">
53                            <td valign="top" class="name">Extended Attribute Type:</td>
54                           
55                            <td valign="top" class="value"><g:link controller="extendedAttributeType" action="show" id="${assetExtendedAttributeInstance?.extendedAttributeType?.id}">${assetExtendedAttributeInstance?.extendedAttributeType?.encodeAsHTML()}</g:link></td>
56                           
57                        </tr>
58                   
59                    </tbody>
60                </table>
61            </div>
62            <div class="buttons">
63                <g:form>
64                    <input type="hidden" name="id" value="${assetExtendedAttributeInstance?.id}" />
65                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
66                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
67                </g:form>
68            </div>
69        </div>
70    </body>
71</html>
Note: See TracBrowser for help on using the repository browser.