source: trunk/grails-app/views/sectionDetailed/list.gsp @ 339

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

Some detailing on Site, Department and Section list veiws.

File size: 2.9 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>Section List</title>
[118]8    </head>
9    <body>
10        <div class="nav">
[273]11            <span class="menuButton"><g:link class="create" action="create">New Section</g:link></span>
[118]12        </div>
13        <div class="body">
[273]14            <h1>Section List</h1>
[118]15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
18            <div class="list">
19                <table>
20                    <thead>
21                        <tr>
22                       
23                                <g:sortableColumn property="id" title="Id" />
24                       
[273]25                                <g:sortableColumn property="name" title="Name" />
26                       
[118]27                                <g:sortableColumn property="description" title="Description" />
28                       
29                                <g:sortableColumn property="isActive" title="Is Active" />
30                       
[273]31                                <th>Department</th>
32                           
[122]33                                <th>Site</th>
[339]34
35                            <th></th>
[122]36                           
[118]37                        </tr>
38                    </thead>
39                    <tbody>
[273]40                    <g:each in="${sectionInstanceList}" status="i" var="sectionInstance">
[339]41                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'/>
[118]42                       
[339]43                            <td>${fieldValue(bean:sectionInstance, field:'id')}</td>
[118]44                       
[273]45                            <td>${fieldValue(bean:sectionInstance, field:'name')}</td>
[118]46                       
[273]47                            <td>${fieldValue(bean:sectionInstance, field:'description')}</td>
[118]48                       
[273]49                            <td>${fieldValue(bean:sectionInstance, field:'isActive')}</td>
[118]50                       
[273]51                            <td>${fieldValue(bean:sectionInstance, field:'department')}</td>
[122]52                       
[273]53                            <td>${fieldValue(bean:sectionInstance, field:'site')}</td>
[339]54
55                            <td>
56                                <g:link action="show" id="${sectionInstance.id}">
57                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
58                                </g:link>
59                            </td>
[273]60                       
[118]61                        </tr>
62                    </g:each>
63                    </tbody>
64                </table>
65            </div>
66            <div class="paginateButtons">
[273]67                <g:paginate total="${sectionInstanceTotal}" />
[118]68            </div>
69        </div>
70    </body>
71</html>
Note: See TracBrowser for help on using the repository browser.