source: trunk/grails-app/views/assetDetailed/list.gsp @ 271

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

Regenerate asset views and detail views to suite.
Add CsvService, import and copy functions with appropriate messages and gsp's.

File size: 2.6 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>Asset List</title>
8        <nav:resources override="true"/>
9    </head>
10    <body>
11        <div class="nav">
12            <nav:renderSubItems group="nav"/>
13        </div>
14        <div class="body">
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                       
25                                <g:sortableColumn property="name" title="Name" />
26                       
27                                <g:sortableColumn property="description" title="Description" />
28                       
29                                <g:sortableColumn property="isActive" title="Is Active" />
30                       
31                                <th>Section</th>
32                           
33                        </tr>
34                    </thead>
35                    <tbody>
36                    <g:each in="${assetInstanceList}" status="i" var="assetInstance">
37                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'/>
38                       
39                            <td>${fieldValue(bean:assetInstance, field:'id')}</td>
40                       
41                            <td>${fieldValue(bean:assetInstance, field:'name')}</td>
42                       
43                            <td>${fieldValue(bean:assetInstance, field:'description')}</td>
44                       
45                            <td>${fieldValue(bean:assetInstance, field:'isActive')}</td>
46                       
47                            <td>${fieldValue(bean:assetInstance, field:'section')}</td>
48
49                            <td>
50                                <g:link action="show" id="${assetInstance.id}">
51                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
52                                </g:link>
53                            </td>
54                       
55                        </tr>
56                    </g:each>
57                    </tbody>
58                </table>
59            </div>
60            <div class="paginateButtons">
61                <g:paginate total="${assetInstanceTotal}" />
62            </div>
63        </div>
64    </body>
65</html>
Note: See TracBrowser for help on using the repository browser.