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 | <nav:resources override="true"/> |
---|
9 | </head> |
---|
10 | <body> |
---|
11 | <div class="nav"> |
---|
12 | <nav:renderSubItems group="navAlt"/> |
---|
13 | </div> |
---|
14 | <div class="body"> |
---|
15 | <g:render template="/shared/messages" /> |
---|
16 | <div class="dialog"> |
---|
17 | <table> |
---|
18 | <tbody> |
---|
19 | |
---|
20 | |
---|
21 | <tr class="prop"> |
---|
22 | <td valign="top" class="name">Id:</td> |
---|
23 | |
---|
24 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'id')}</td> |
---|
25 | |
---|
26 | </tr> |
---|
27 | |
---|
28 | <tr class="prop"> |
---|
29 | <td valign="top" class="name">Name:</td> |
---|
30 | |
---|
31 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'name')}</td> |
---|
32 | |
---|
33 | </tr> |
---|
34 | |
---|
35 | <tr class="prop"> |
---|
36 | <td valign="top" class="name">Description:</td> |
---|
37 | |
---|
38 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'description')}</td> |
---|
39 | |
---|
40 | </tr> |
---|
41 | |
---|
42 | <tr class="prop"> |
---|
43 | <td valign="top" class="name">Comment:</td> |
---|
44 | |
---|
45 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'comment')}</td> |
---|
46 | |
---|
47 | </tr> |
---|
48 | |
---|
49 | <tr class="prop"> |
---|
50 | <td valign="top" class="name">Is Active:</td> |
---|
51 | |
---|
52 | <td valign="top" class="value">${fieldValue(bean:sectionInstance, field:'isActive')}</td> |
---|
53 | |
---|
54 | </tr> |
---|
55 | |
---|
56 | <tr class="prop"> |
---|
57 | <td valign="top" class="name">Assets:</td> |
---|
58 | |
---|
59 | <td valign="top" style="text-align:left;" class="value"> |
---|
60 | <ul> |
---|
61 | <g:each var="a" in="${sectionInstance.assets}"> |
---|
62 | <li><g:link controller="assetDetailed" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li> |
---|
63 | </g:each> |
---|
64 | </ul> |
---|
65 | </td> |
---|
66 | |
---|
67 | </tr> |
---|
68 | |
---|
69 | <tr class="prop"> |
---|
70 | <td valign="top" class="name">Department:</td> |
---|
71 | |
---|
72 | <td valign="top" class="value"><g:link controller="departmentDetailed" action="show" id="${sectionInstance?.department?.id}">${sectionInstance?.department?.encodeAsHTML()}</g:link></td> |
---|
73 | |
---|
74 | </tr> |
---|
75 | |
---|
76 | <tr class="prop"> |
---|
77 | <td valign="top" class="name">Maintenance Actions:</td> |
---|
78 | |
---|
79 | <td valign="top" style="text-align:left;" class="value"> |
---|
80 | <ul> |
---|
81 | <g:each var="m" in="${sectionInstance.maintenanceActions}"> |
---|
82 | <li><g:link controller="maintenanceActionDetailed" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> |
---|
83 | </g:each> |
---|
84 | </ul> |
---|
85 | </td> |
---|
86 | |
---|
87 | </tr> |
---|
88 | |
---|
89 | <tr class="prop"> |
---|
90 | <td valign="top" class="name">Section Extended Attributes:</td> |
---|
91 | |
---|
92 | <td valign="top" style="text-align:left;" class="value"> |
---|
93 | <ul> |
---|
94 | <g:each var="s" in="${sectionInstance.sectionExtendedAttributes}"> |
---|
95 | <li><g:link controller="sectionExtendedAttributeDetailed" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
96 | </g:each> |
---|
97 | </ul> |
---|
98 | </td> |
---|
99 | |
---|
100 | </tr> |
---|
101 | |
---|
102 | <tr class="prop"> |
---|
103 | <td valign="top" class="name">Site:</td> |
---|
104 | |
---|
105 | <td valign="top" class="value"><g:link controller="siteDetailed" action="show" id="${sectionInstance?.site?.id}">${sectionInstance?.site?.encodeAsHTML()}</g:link></td> |
---|
106 | |
---|
107 | </tr> |
---|
108 | |
---|
109 | </tbody> |
---|
110 | </table> |
---|
111 | </div> |
---|
112 | <div class="buttons"> |
---|
113 | <g:form> |
---|
114 | <input type="hidden" name="id" value="${sectionInstance?.id}" /> |
---|
115 | <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> |
---|
116 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
117 | </g:form> |
---|
118 | </div> |
---|
119 | </div> |
---|
120 | </body> |
---|
121 | </html> |
---|