source: trunk/src/grails-app/views/modification/show.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: 3.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>Show Modification</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="list" action="list">Modification List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New Modification</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Show Modification</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <div class="dialog">
21                <table>
22                    <tbody>
23
24                   
25                        <tr class="prop">
26                            <td valign="top" class="name">Id:</td>
27                           
28                            <td valign="top" class="value">${fieldValue(bean:modificationInstance, field:'id')}</td>
29                           
30                        </tr>
31                   
32                        <tr class="prop">
33                            <td valign="top" class="name">Person:</td>
34                           
35                            <td valign="top" class="value"><g:link controller="person" action="show" id="${modificationInstance?.person?.id}">${modificationInstance?.person?.encodeAsHTML()}</g:link></td>
36                           
37                        </tr>
38                   
39                        <tr class="prop">
40                            <td valign="top" class="name">Modification Type:</td>
41                           
42                            <td valign="top" class="value"><g:link controller="modificationType" action="show" id="${modificationInstance?.modificationType?.id}">${modificationInstance?.modificationType?.encodeAsHTML()}</g:link></td>
43                           
44                        </tr>
45                   
46                        <tr class="prop">
47                            <td valign="top" class="name">Task:</td>
48                           
49                            <td valign="top" class="value"><g:link controller="task" action="show" id="${modificationInstance?.task?.id}">${modificationInstance?.task?.encodeAsHTML()}</g:link></td>
50                           
51                        </tr>
52                   
53                        <tr class="prop">
54                            <td valign="top" class="name">Date Time:</td>
55                           
56                            <td valign="top" class="value">${fieldValue(bean:modificationInstance, field:'dateTime')}</td>
57                           
58                        </tr>
59                   
60                        <tr class="prop">
61                            <td valign="top" class="name">Comments:</td>
62                           
63                            <td valign="top" class="value">${fieldValue(bean:modificationInstance, field:'comments')}</td>
64                           
65                        </tr>
66                   
67                    </tbody>
68                </table>
69            </div>
70            <div class="buttons">
71                <g:form>
72                    <input type="hidden" name="id" value="${modificationInstance?.id}" />
73                    <span class="button"><g:actionSubmit class="edit" value="Edit" /></span>
74                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
75                </g:form>
76            </div>
77        </div>
78    </body>
79</html>
Note: See TracBrowser for help on using the repository browser.