Last change
on this file since 117 was
116,
checked in by gav, 16 years ago
|
First commit of Inventory domain, including domain-classes, controllers, views and bootstrap. Also double check/adjust as required security extends in controllers.
|
File size:
2.2 KB
|
Rev | Line | |
---|
[116] | 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>StoredItem 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 StoredItem</g:link></span> |
---|
| 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <h1>StoredItem 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="quantity" title="Quantity" /> |
---|
| 27 | |
---|
| 28 | <th>Inventory Item</th> |
---|
| 29 | |
---|
| 30 | <th>Store Location</th> |
---|
| 31 | |
---|
| 32 | </tr> |
---|
| 33 | </thead> |
---|
| 34 | <tbody> |
---|
| 35 | <g:each in="${storedItemInstanceList}" status="i" var="storedItemInstance"> |
---|
| 36 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
---|
| 37 | |
---|
| 38 | <td><g:link action="show" id="${storedItemInstance.id}">${fieldValue(bean:storedItemInstance, field:'id')}</g:link></td> |
---|
| 39 | |
---|
| 40 | <td>${fieldValue(bean:storedItemInstance, field:'quantity')}</td> |
---|
| 41 | |
---|
| 42 | <td>${fieldValue(bean:storedItemInstance, field:'inventoryItem')}</td> |
---|
| 43 | |
---|
| 44 | <td>${fieldValue(bean:storedItemInstance, field:'storeLocation')}</td> |
---|
| 45 | |
---|
| 46 | </tr> |
---|
| 47 | </g:each> |
---|
| 48 | </tbody> |
---|
| 49 | </table> |
---|
| 50 | </div> |
---|
| 51 | <div class="paginateButtons"> |
---|
| 52 | <g:paginate total="${storedItemInstanceTotal}" /> |
---|
| 53 | </div> |
---|
| 54 | </div> |
---|
| 55 | </body> |
---|
| 56 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.