source: trunk/grails-app/views/period/list.gsp @ 151

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

Replace all deprecated "createLinkTo" links with "resource".

File size: 2.0 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>Period List</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><a class="home" href="${resource(dir:'')}">Home</a></span>
12            <span class="menuButton"><g:link class="create" action="create">New Period</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Period 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="isActive" title="Is Active" />
27                       
28                                <g:sortableColumn property="period" title="Period" />
29                       
30                        </tr>
31                    </thead>
32                    <tbody>
33                    <g:each in="${periodInstanceList}" status="i" var="periodInstance">
34                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
35                       
36                            <td><g:link action="show" id="${periodInstance.id}">${fieldValue(bean:periodInstance, field:'id')}</g:link></td>
37                       
38                            <td>${fieldValue(bean:periodInstance, field:'isActive')}</td>
39                       
40                            <td>${fieldValue(bean:periodInstance, field:'period')}</td>
41                       
42                        </tr>
43                    </g:each>
44                    </tbody>
45                </table>
46            </div>
47            <div class="paginateButtons">
48                <g:paginate total="${periodInstanceTotal}" />
49            </div>
50        </div>
51    </body>
52</html>
Note: See TracBrowser for help on using the repository browser.