source: trunk/grails-app/views/systemSection/show.gsp @ 178

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

Resolve ticket #12 again.
Turn query cache on again since this did not resolve the problem.
Implement fix as per http://jira.codehaus.org/browse/GRAILS-5111, add flush:true to save.
Adjust templates to include above and remove home url.
Re-generate all non detailed views and controllers.
Manually add flush:true and remove home url to detailed views and controllers.

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