source: trunk/src/grails-app/views/modification/list.gsp @ 21

Last change on this file since 21 was 21, checked in by gavin, 15 years ago

Remove TypeOfClass? and change to ClassType?. Update ERD to match.
Create and add openMimLogo/Icon.
Generate-all *.
Configure BootStrap? and add entries, some not saving yet.
Update DatabaseDesign?.tex and index.gsp

File size: 2.6 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>Modification 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 Modification</g:link></span>
13        </div>
14        <div class="body">
15            <h1>Modification 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                                <th>Person</th>
27                           
28                                <th>Modification Type</th>
29                           
30                                <th>Task</th>
31                           
32                                <g:sortableColumn property="dateTime" title="Date Time" />
33                       
34                                <g:sortableColumn property="comments" title="Comments" />
35                       
36                        </tr>
37                    </thead>
38                    <tbody>
39                    <g:each in="${modificationInstanceList}" status="i" var="modificationInstance">
40                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
41                       
42                            <td><g:link action="show" id="${modificationInstance.id}">${fieldValue(bean:modificationInstance, field:'id')}</g:link></td>
43                       
44                            <td>${fieldValue(bean:modificationInstance, field:'person')}</td>
45                       
46                            <td>${fieldValue(bean:modificationInstance, field:'modificationType')}</td>
47                       
48                            <td>${fieldValue(bean:modificationInstance, field:'task')}</td>
49                       
50                            <td>${fieldValue(bean:modificationInstance, field:'dateTime')}</td>
51                       
52                            <td>${fieldValue(bean:modificationInstance, field:'comments')}</td>
53                       
54                        </tr>
55                    </g:each>
56                    </tbody>
57                </table>
58            </div>
59            <div class="paginateButtons">
60                <g:paginate total="${Modification.count()}" />
61            </div>
62        </div>
63    </body>
64</html>
Note: See TracBrowser for help on using the repository browser.