source: trunk/src/grails-app/views/assignedPerson/edit.gsp @ 96

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

Implemented the bulk of AssignedPerson? domain

File size: 4.2 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 AssignedPerson</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">AssignedPerson List</g:link></span>
13            <span class="menuButton"><g:link class="create" action="create">New AssignedPerson</g:link></span>
14        </div>
15        <div class="body">
16            <h1>Edit AssignedPerson</h1>
17            <g:if test="${flash.message}">
18            <div class="message">${flash.message}</div>
19            </g:if>
20            <g:hasErrors bean="${assignedPersonInstance}">
21            <div class="errors">
22                <g:renderErrors bean="${assignedPersonInstance}" as="list" />
23            </div>
24            </g:hasErrors>
25            <g:form method="post" >
26                <input type="hidden" name="id" value="${assignedPersonInstance?.id}" />
27                <input type="hidden" name="version" value="${assignedPersonInstance?.version}" />
28                <div class="dialog">
29                    <table>
30                        <tbody>
31                       
32                            <tr class="prop">
33                                <td valign="top" class="name">
34                                    <label for="task">Task:</label>
35                                </td>
36                                <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'task','errors')}">
37                                    <g:select optionKey="id" from="${Task.list()}" name="task.id" value="${assignedPersonInstance?.task?.id}" ></g:select>
38                                </td>
39                            </tr>
40                       
41                            <tr class="prop">
42                                <td valign="top" class="name">
43                                    <label for="person">Person:</label>
44                                </td>
45                                <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'person','errors')}">
46                                    <g:select optionKey="id" from="${Person.list()}" name="person.id" value="${assignedPersonInstance?.person?.id}" ></g:select>
47                                </td>
48                            </tr>
49                       
50                            <tr class="prop">
51                                <td valign="top" class="name">
52                                    <label for="estimatedHour">Estimated Hour:</label>
53                                </td>
54                                <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedHour','errors')}">
55                                    <input type="text" id="estimatedHour" name="estimatedHour" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedHour')}" />
56                                </td>
57                            </tr>
58                       
59                            <tr class="prop">
60                                <td valign="top" class="name">
61                                    <label for="estimatedMinute">Estimated Minute:</label>
62                                </td>
63                                <td valign="top" class="value ${hasErrors(bean:assignedPersonInstance,field:'estimatedMinute','errors')}">
64                                    <input type="text" id="estimatedMinute" name="estimatedMinute" value="${fieldValue(bean:assignedPersonInstance,field:'estimatedMinute')}" />
65                                </td>
66                            </tr>
67                       
68                        </tbody>
69                    </table>
70                </div>
71                <div class="buttons">
72                    <span class="button"><g:actionSubmit class="save" value="Update" /></span>
73                    <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
74                </div>
75            </g:form>
76        </div>
77    </body>
78</html>
Note: See TracBrowser for help on using the repository browser.