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

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

Add Department domain class, controller, views and demo data.
Add costCode and department attributes to SystemSection? and regen non-detailed controller and views, adjust detailed views to suite.

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