source: trunk/grails-app/views/taskModification/list.gsp @ 178

Last change on this file since 178 was 178, checked in by gav, 14 years ago

Resolve ticket #12 again.
Turn query cache on again since this did not resolve the problem.
Implement fix as per http://jira.codehaus.org/browse/GRAILS-5111, add flush:true to save.
Adjust templates to include above and remove home url.
Re-generate all non detailed views and controllers.
Manually add flush:true and remove home url to detailed views and controllers.

File size: 2.6 KB
RevLine 
[66]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
[93]7        <title>TaskModification List</title>
[66]8    </head>
9    <body>
10        <div class="nav">
[93]11            <span class="menuButton"><g:link class="create" action="create">New TaskModification</g:link></span>
[66]12        </div>
13        <div class="body">
[93]14            <h1>TaskModification List</h1>
[66]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                                <th>Person</th>
26                           
[93]27                                <th>Task Modification Type</th>
[66]28                           
29                                <th>Task</th>
30                           
31                                <g:sortableColumn property="date" title="Date" />
32                       
33                                <g:sortableColumn property="comment" title="Comment" />
34                       
35                        </tr>
36                    </thead>
37                    <tbody>
[93]38                    <g:each in="${taskModificationInstanceList}" status="i" var="taskModificationInstance">
[66]39                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
40                       
[93]41                            <td><g:link action="show" id="${taskModificationInstance.id}">${fieldValue(bean:taskModificationInstance, field:'id')}</g:link></td>
[66]42                       
[93]43                            <td>${fieldValue(bean:taskModificationInstance, field:'person')}</td>
[66]44                       
[93]45                            <td>${fieldValue(bean:taskModificationInstance, field:'taskModificationType')}</td>
[66]46                       
[93]47                            <td>${fieldValue(bean:taskModificationInstance, field:'task')}</td>
[66]48                       
[93]49                            <td>${fieldValue(bean:taskModificationInstance, field:'date')}</td>
[66]50                       
[93]51                            <td>${fieldValue(bean:taskModificationInstance, field:'comment')}</td>
[66]52                       
53                        </tr>
54                    </g:each>
55                    </tbody>
56                </table>
57            </div>
58            <div class="paginateButtons">
[93]59                <g:paginate total="${taskModificationInstanceTotal}" />
[66]60            </div>
61        </div>
62    </body>
63</html>
Note: See TracBrowser for help on using the repository browser.