Last change
on this file since 353 was
265,
checked in by gav, 15 years ago
|
Start of asset tree refactor.
Tweak AppConfig.groovy maxSize values and regenerate views.
Add page_copy.png
|
File size:
2.1 KB
|
Rev | Line | |
---|
[234] | 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>AppConfig List</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
| 11 | <span class="menuButton"><g:link class="create" action="create">New AppConfig</g:link></span> |
---|
| 12 | </div> |
---|
| 13 | <div class="body"> |
---|
| 14 | <h1>AppConfig 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 | |
---|
| 25 | <g:sortableColumn property="name" title="Name" /> |
---|
| 26 | |
---|
[265] | 27 | <g:sortableColumn property="value" title="Value" /> |
---|
| 28 | |
---|
[234] | 29 | <g:sortableColumn property="description" title="Description" /> |
---|
| 30 | |
---|
| 31 | </tr> |
---|
| 32 | </thead> |
---|
| 33 | <tbody> |
---|
| 34 | <g:each in="${appConfigInstanceList}" status="i" var="appConfigInstance"> |
---|
| 35 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
---|
| 36 | |
---|
| 37 | <td><g:link action="show" id="${appConfigInstance.id}">${fieldValue(bean:appConfigInstance, field:'id')}</g:link></td> |
---|
| 38 | |
---|
| 39 | <td>${fieldValue(bean:appConfigInstance, field:'name')}</td> |
---|
| 40 | |
---|
[265] | 41 | <td>${fieldValue(bean:appConfigInstance, field:'value')}</td> |
---|
| 42 | |
---|
[234] | 43 | <td>${fieldValue(bean:appConfigInstance, field:'description')}</td> |
---|
| 44 | |
---|
| 45 | </tr> |
---|
| 46 | </g:each> |
---|
| 47 | </tbody> |
---|
| 48 | </table> |
---|
| 49 | </div> |
---|
| 50 | <div class="paginateButtons"> |
---|
| 51 | <g:paginate total="${appConfigInstanceTotal}" /> |
---|
| 52 | </div> |
---|
| 53 | </div> |
---|
| 54 | </body> |
---|
| 55 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.