Last change
on this file since 468 was
377,
checked in by gav, 15 years ago
|
Svn move InventoryLocation and InventoryStore controllers and views to detailed and complete detailing.
|
File size:
2.5 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>InventoryLocation List</title> |
---|
8 | <nav:resources override="true"/> |
---|
9 | </head> |
---|
10 | <body> |
---|
11 | <div class="nav"> |
---|
12 | <nav:renderSubItems group="navAlt"/> |
---|
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 | <th>Inventory Store</th> |
---|
28 | |
---|
29 | <g:sortableColumn property="isActive" title="Is Active" /> |
---|
30 | |
---|
31 | <th></th> |
---|
32 | |
---|
33 | </tr> |
---|
34 | </thead> |
---|
35 | <tbody> |
---|
36 | <g:each in="${inventoryLocationInstanceList}" status="i" var="inventoryLocationInstance"> |
---|
37 | <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'/> |
---|
38 | |
---|
39 | |
---|
40 | <td>${fieldValue(bean:inventoryLocationInstance, field:'id')}</td> |
---|
41 | |
---|
42 | <td>${fieldValue(bean:inventoryLocationInstance, field:'name')}</td> |
---|
43 | |
---|
44 | <td>${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')}</td> |
---|
45 | |
---|
46 | <td>${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td> |
---|
47 | |
---|
48 | <td> |
---|
49 | <g:link action="show" id="${inventoryLocationInstance.id}"> |
---|
50 | <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> |
---|
51 | </g:link> |
---|
52 | </td> |
---|
53 | |
---|
54 | </tr> |
---|
55 | </g:each> |
---|
56 | </tbody> |
---|
57 | </table> |
---|
58 | </div> |
---|
59 | <div class="paginateButtons"> |
---|
60 | <g:paginate total="${inventoryLocationInstanceTotal}" /> |
---|
61 | </div> |
---|
62 | </div> |
---|
63 | </body> |
---|
64 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.