source: trunk/grails-app/views/inventoryItemDetailed/list.gsp @ 124

Last change on this file since 124 was 124, checked in by gav, 15 years ago

Detail controller and views for Asset, AssetExtendedAttribute?, PlannedMaintenance?, MaintenanceAction?, RecurringSchedule?, SystemSection?.
Some minor work on Task controller and views.
Change PlannedMaintenance? relationship, adjust ERD, Bootstrap and Domain classes to suite.

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