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