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 Person</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">Person List</g:link></span> |
---|
13 | <span class="menuButton"><g:link class="create" action="create">New Person</g:link></span> |
---|
14 | </div> |
---|
15 | <div class="body"> |
---|
16 | <h1>Edit Person</h1> |
---|
17 | <g:if test="${flash.message}"> |
---|
18 | <div class="message">${flash.message}</div> |
---|
19 | </g:if> |
---|
20 | <g:hasErrors bean="${personInstance}"> |
---|
21 | <div class="errors"> |
---|
22 | <g:renderErrors bean="${personInstance}" as="list" /> |
---|
23 | </div> |
---|
24 | </g:hasErrors> |
---|
25 | <g:form method="post" > |
---|
26 | <input type="hidden" name="id" value="${personInstance?.id}" /> |
---|
27 | <div class="dialog"> |
---|
28 | <table> |
---|
29 | <tbody> |
---|
30 | |
---|
31 | <tr class="prop"> |
---|
32 | <td valign="top" class="name"> |
---|
33 | <label for="firstName">First Name:</label> |
---|
34 | </td> |
---|
35 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'firstName','errors')}"> |
---|
36 | <input type="text" maxlength="50" id="firstName" name="firstName" value="${fieldValue(bean:personInstance,field:'firstName')}"/> |
---|
37 | </td> |
---|
38 | </tr> |
---|
39 | |
---|
40 | <tr class="prop"> |
---|
41 | <td valign="top" class="name"> |
---|
42 | <label for="lastName">Last Name:</label> |
---|
43 | </td> |
---|
44 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'lastName','errors')}"> |
---|
45 | <input type="text" maxlength="50" id="lastName" name="lastName" value="${fieldValue(bean:personInstance,field:'lastName')}"/> |
---|
46 | </td> |
---|
47 | </tr> |
---|
48 | |
---|
49 | <tr class="prop"> |
---|
50 | <td valign="top" class="name"> |
---|
51 | <label for="employeeID">Employee ID:</label> |
---|
52 | </td> |
---|
53 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'employeeID','errors')}"> |
---|
54 | <input type="text" id="employeeID" name="employeeID" value="${fieldValue(bean:personInstance,field:'employeeID')}" /> |
---|
55 | </td> |
---|
56 | </tr> |
---|
57 | |
---|
58 | <tr class="prop"> |
---|
59 | <td valign="top" class="name"> |
---|
60 | <label for="entries">Entries:</label> |
---|
61 | </td> |
---|
62 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'entries','errors')}"> |
---|
63 | |
---|
64 | <ul> |
---|
65 | <g:each var="e" in="${personInstance?.entries?}"> |
---|
66 | <li><g:link controller="entry" action="show" id="${e.id}">${e?.encodeAsHTML()}</g:link></li> |
---|
67 | </g:each> |
---|
68 | </ul> |
---|
69 | <g:link controller="entry" params="['person.id':personInstance?.id]" action="create">Add Entry</g:link> |
---|
70 | |
---|
71 | </td> |
---|
72 | </tr> |
---|
73 | |
---|
74 | <tr class="prop"> |
---|
75 | <td valign="top" class="name"> |
---|
76 | <label for="isActive">Is Active:</label> |
---|
77 | </td> |
---|
78 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'isActive','errors')}"> |
---|
79 | <g:checkBox name="isActive" value="${personInstance?.isActive}" ></g:checkBox> |
---|
80 | </td> |
---|
81 | </tr> |
---|
82 | |
---|
83 | <tr class="prop"> |
---|
84 | <td valign="top" class="name"> |
---|
85 | <label for="modifications">Modifications:</label> |
---|
86 | </td> |
---|
87 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'modifications','errors')}"> |
---|
88 | |
---|
89 | <ul> |
---|
90 | <g:each var="m" in="${personInstance?.modifications?}"> |
---|
91 | <li><g:link controller="modification" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> |
---|
92 | </g:each> |
---|
93 | </ul> |
---|
94 | <g:link controller="modification" params="['person.id':personInstance?.id]" action="create">Add Modification</g:link> |
---|
95 | |
---|
96 | </td> |
---|
97 | </tr> |
---|
98 | |
---|
99 | <tr class="prop"> |
---|
100 | <td valign="top" class="name"> |
---|
101 | <label for="personGroups">Person Groups:</label> |
---|
102 | </td> |
---|
103 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'personGroups','errors')}"> |
---|
104 | |
---|
105 | <ul> |
---|
106 | <g:each var="p" in="${personInstance?.personGroups?}"> |
---|
107 | <li><g:link controller="personGroup" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li> |
---|
108 | </g:each> |
---|
109 | </ul> |
---|
110 | <g:link controller="personGroup" params="['person.id':personInstance?.id]" action="create">Add PersonGroup</g:link> |
---|
111 | |
---|
112 | </td> |
---|
113 | </tr> |
---|
114 | |
---|
115 | <tr class="prop"> |
---|
116 | <td valign="top" class="name"> |
---|
117 | <label for="tasks">Tasks:</label> |
---|
118 | </td> |
---|
119 | <td valign="top" class="value ${hasErrors(bean:personInstance,field:'tasks','errors')}"> |
---|
120 | |
---|
121 | <ul> |
---|
122 | <g:each var="t" in="${personInstance?.tasks?}"> |
---|
123 | <li><g:link controller="task" action="show" id="${t.id}">${t?.encodeAsHTML()}</g:link></li> |
---|
124 | </g:each> |
---|
125 | </ul> |
---|
126 | <g:link controller="task" params="['person.id':personInstance?.id]" action="create">Add Task</g:link> |
---|
127 | |
---|
128 | </td> |
---|
129 | </tr> |
---|
130 | |
---|
131 | </tbody> |
---|
132 | </table> |
---|
133 | </div> |
---|
134 | <div class="buttons"> |
---|
135 | <span class="button"><g:actionSubmit class="save" value="Update" /></span> |
---|
136 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
137 | </div> |
---|
138 | </g:form> |
---|
139 | </div> |
---|
140 | </body> |
---|
141 | </html> |
---|