source: trunk/grails-app/views/sectionDetailed/show.gsp @ 273

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

Correct site-inventoryStores relationship and generate-all.
Copy section views over sectionDetailed.

File size: 5.4 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 Section</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><g:link class="list" action="list">Section List</g:link></span>
12            <span class="menuButton"><g:link class="create" action="create">New Section</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Show Section</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:sectionInstance, field:'id')}</td>
28                           
29                        </tr>
30                   
31                        <tr class="prop">
32                            <td valign="top" class="name">Name:</td>
33                           
34                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'name')}</td>
35                           
36                        </tr>
37                   
38                        <tr class="prop">
39                            <td valign="top" class="name">Description:</td>
40                           
41                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'description')}</td>
42                           
43                        </tr>
44                   
45                        <tr class="prop">
46                            <td valign="top" class="name">Is Active:</td>
47                           
48                            <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'isActive')}</td>
49                           
50                        </tr>
51                   
52                        <tr class="prop">
53                            <td valign="top" class="name">Assets:</td>
54                           
55                            <td  valign="top" style="text-align:left;" class="value">
56                                <ul>
57                                <g:each var="a" in="${sectionInstance.assets}">
58                                    <li><g:link controller="asset" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li>
59                                </g:each>
60                                </ul>
61                            </td>
62                           
63                        </tr>
64                   
65                        <tr class="prop">
66                            <td valign="top" class="name">Department:</td>
67                           
68                            <td valign="top" class="value"><g:link controller="department" action="show" id="${sectionInstance?.department?.id}">${sectionInstance?.department?.encodeAsHTML()}</g:link></td>
69                           
70                        </tr>
71                   
72                        <tr class="prop">
73                            <td valign="top" class="name">Maintenance Actions:</td>
74                           
75                            <td  valign="top" style="text-align:left;" class="value">
76                                <ul>
77                                <g:each var="m" in="${sectionInstance.maintenanceActions}">
78                                    <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li>
79                                </g:each>
80                                </ul>
81                            </td>
82                           
83                        </tr>
84                   
85                        <tr class="prop">
86                            <td valign="top" class="name">Section Extended Attributes:</td>
87                           
88                            <td  valign="top" style="text-align:left;" class="value">
89                                <ul>
90                                <g:each var="s" in="${sectionInstance.sectionExtendedAttributes}">
91                                    <li><g:link controller="sectionExtendedAttribute" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li>
92                                </g:each>
93                                </ul>
94                            </td>
95                           
96                        </tr>
97                   
98                        <tr class="prop">
99                            <td valign="top" class="name">Site:</td>
100                           
101                            <td valign="top" class="value"><g:link controller="site" action="show" id="${sectionInstance?.site?.id}">${sectionInstance?.site?.encodeAsHTML()}</g:link></td>
102                           
103                        </tr>
104                   
105                    </tbody>
106                </table>
107            </div>
108            <div class="buttons">
109                <g:form>
110                    <input type="hidden" name="id" value="${sectionInstance?.id}" />
111                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
112                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
113                </g:form>
114            </div>
115        </div>
116    </body>
117</html>
Note: See TracBrowser for help on using the repository browser.