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

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

Add comment attribute to Section and limit description to 75 char.
Update detailed views to suite.

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