source: trunk/grails-app/views/departmentDetailed/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.6 KB
RevLine 
[162]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>Department List</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><g:link class="create" action="create">New Department</g:link></span>
12        </div>
13        <div class="body">
14            <h1>Department List</h1>
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                       
[164]25                                <g:sortableColumn property="name" title="Name" />
[162]26                       
27                                <g:sortableColumn property="description" title="Description" />
28                       
29                                <g:sortableColumn property="isActive" title="Is Active" />
[339]30
31                            <th></th>
[162]32                       
33                        </tr>
34                    </thead>
35                    <tbody>
36                    <g:each in="${departmentInstanceList}" status="i" var="departmentInstance">
[339]37                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'/>
[162]38                       
[339]39                            <td>${fieldValue(bean:departmentInstance, field:'id')}</td>
[162]40                       
[164]41                            <td>${fieldValue(bean:departmentInstance, field:'name')}</td>
[162]42                       
43                            <td>${fieldValue(bean:departmentInstance, field:'description')}</td>
44                       
45                            <td>${fieldValue(bean:departmentInstance, field:'isActive')}</td>
[339]46
47                            <td>
48                                <g:link action="show" id="${departmentInstance.id}">
49                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
50                                </g:link>
51                            </td>
[162]52                       
53                        </tr>
54                    </g:each>
55                    </tbody>
56                </table>
57            </div>
58            <div class="paginateButtons">
59                <g:paginate total="${departmentInstanceTotal}" />
60            </div>
61        </div>
62    </body>
63</html>
Note: See TracBrowser for help on using the repository browser.