source: trunk/grails-app/views/componentItem/show.gsp @ 118

Last change on this file since 118 was 118, checked in by gav, 15 years ago

First commit of Asset domain, including domain-classes, controllers, views and bootstrap.

File size: 4.2 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 ComponentItem</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="list" action="list">ComponentItem List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New ComponentItem</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Show ComponentItem</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <div class="dialog">
21                <table>
22                    <tbody>
23
24                   
25                        <tr class="prop">
26                            <td valign="top" class="name">Id:</td>
27                           
28                            <td valign="top" class="value">${fieldValue(bean:componentItemInstance, field:'id')}</td>
29                           
30                        </tr>
31                   
32                        <tr class="prop">
33                            <td valign="top" class="name">Description:</td>
34                           
35                            <td valign="top" class="value">${fieldValue(bean:componentItemInstance, field:'description')}</td>
36                           
37                        </tr>
38                   
39                        <tr class="prop">
40                            <td valign="top" class="name">Fmea Number:</td>
41                           
42                            <td valign="top" class="value">${fieldValue(bean:componentItemInstance, field:'fmeaNumber')}</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:componentItemInstance, field:'isActive')}</td>
50                           
51                        </tr>
52                   
53                        <tr class="prop">
54                            <td valign="top" class="name">Lifeplan:</td>
55                           
56                            <td valign="top" class="value"><g:link controller="lifePlan" action="show" id="${componentItemInstance?.lifeplan?.id}">${componentItemInstance?.lifeplan?.encodeAsHTML()}</g:link></td>
57                           
58                        </tr>
59                   
60                        <tr class="prop">
61                            <td valign="top" class="name">Name:</td>
62                           
63                            <td valign="top" class="value">${fieldValue(bean:componentItemInstance, field:'name')}</td>
64                           
65                        </tr>
66                   
67                        <tr class="prop">
68                            <td valign="top" class="name">Sub Assemblies:</td>
69                           
70                            <td  valign="top" style="text-align:left;" class="value">
71                                <ul>
72                                <g:each var="s" in="${componentItemInstance.subAssemblies}">
73                                    <li><g:link controller="subAssembly" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
74                                </g:each>
75                                </ul>
76                            </td>
77                           
78                        </tr>
79                   
80                    </tbody>
81                </table>
82            </div>
83            <div class="buttons">
84                <g:form>
85                    <input type="hidden" name="id" value="${componentItemInstance?.id}" />
86                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
87                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
88                </g:form>
89            </div>
90        </div>
91    </body>
92</html>
Note: See TracBrowser for help on using the repository browser.