[162] | 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 Department</title> |
---|
| 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
| 11 | <span class="menuButton"><g:link class="list" action="list">Department List</g:link></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New Department</g:link></span> |
---|
| 13 | </div> |
---|
| 14 | <div class="body"> |
---|
| 15 | <h1>Edit Department</h1> |
---|
| 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
| 19 | <g:hasErrors bean="${departmentInstance}"> |
---|
| 20 | <div class="errors"> |
---|
| 21 | <g:renderErrors bean="${departmentInstance}" as="list" /> |
---|
| 22 | </div> |
---|
| 23 | </g:hasErrors> |
---|
| 24 | <g:form method="post" > |
---|
| 25 | <input type="hidden" name="id" value="${departmentInstance?.id}" /> |
---|
| 26 | <input type="hidden" name="version" value="${departmentInstance?.version}" /> |
---|
| 27 | <div class="dialog"> |
---|
| 28 | <table> |
---|
| 29 | <tbody> |
---|
| 30 | |
---|
| 31 | <tr class="prop"> |
---|
| 32 | <td valign="top" class="name"> |
---|
[164] | 33 | <label for="name">Name:</label> |
---|
[162] | 34 | </td> |
---|
[164] | 35 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'name','errors')}"> |
---|
| 36 | <input type="text" id="name" name="name" value="${fieldValue(bean:departmentInstance,field:'name')}"/> |
---|
[162] | 37 | </td> |
---|
| 38 | </tr> |
---|
| 39 | |
---|
| 40 | <tr class="prop"> |
---|
| 41 | <td valign="top" class="name"> |
---|
| 42 | <label for="description">Description:</label> |
---|
| 43 | </td> |
---|
| 44 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'description','errors')}"> |
---|
| 45 | <input type="text" id="description" name="description" value="${fieldValue(bean:departmentInstance,field:'description')}"/> |
---|
| 46 | </td> |
---|
| 47 | </tr> |
---|
| 48 | |
---|
| 49 | <tr class="prop"> |
---|
| 50 | <td valign="top" class="name"> |
---|
[164] | 51 | <label for="costCode">Cost Code:</label> |
---|
| 52 | </td> |
---|
| 53 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'costCode','errors')}"> |
---|
| 54 | <input type="text" id="costCode" name="costCode" value="${fieldValue(bean:departmentInstance,field:'costCode')}"/> |
---|
| 55 | </td> |
---|
| 56 | </tr> |
---|
| 57 | |
---|
| 58 | <tr class="prop"> |
---|
| 59 | <td valign="top" class="name"> |
---|
[162] | 60 | <label for="isActive">Is Active:</label> |
---|
| 61 | </td> |
---|
| 62 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'isActive','errors')}"> |
---|
| 63 | <g:checkBox name="isActive" value="${departmentInstance?.isActive}" ></g:checkBox> |
---|
| 64 | </td> |
---|
| 65 | </tr> |
---|
| 66 | |
---|
| 67 | <tr class="prop"> |
---|
| 68 | <td valign="top" class="name"> |
---|
[164] | 69 | <label for="persons">Persons:</label> |
---|
[162] | 70 | </td> |
---|
[164] | 71 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'persons','errors')}"> |
---|
| 72 | |
---|
| 73 | <ul> |
---|
| 74 | <g:each var="p" in="${departmentInstance?.persons?}"> |
---|
| 75 | <li><g:link controller="person" action="show" id="${p.id}">${p?.encodeAsHTML()}</g:link></li> |
---|
| 76 | </g:each> |
---|
| 77 | </ul> |
---|
| 78 | <g:link controller="person" params="['department.id':departmentInstance?.id]" action="create">Add Person</g:link> |
---|
| 79 | |
---|
[162] | 80 | </td> |
---|
| 81 | </tr> |
---|
| 82 | |
---|
| 83 | <tr class="prop"> |
---|
| 84 | <td valign="top" class="name"> |
---|
| 85 | <label for="systemSections">System Sections:</label> |
---|
| 86 | </td> |
---|
| 87 | <td valign="top" class="value ${hasErrors(bean:departmentInstance,field:'systemSections','errors')}"> |
---|
| 88 | |
---|
| 89 | <ul> |
---|
| 90 | <g:each var="s" in="${departmentInstance?.systemSections?}"> |
---|
| 91 | <li><g:link controller="systemSection" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
| 92 | </g:each> |
---|
| 93 | </ul> |
---|
| 94 | <g:link controller="systemSection" params="['department.id':departmentInstance?.id]" action="create">Add SystemSection</g:link> |
---|
| 95 | |
---|
| 96 | </td> |
---|
| 97 | </tr> |
---|
| 98 | |
---|
| 99 | </tbody> |
---|
| 100 | </table> |
---|
| 101 | </div> |
---|
| 102 | <div class="buttons"> |
---|
| 103 | <span class="button"><g:actionSubmit class="save" value="Update" /></span> |
---|
| 104 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 105 | </div> |
---|
| 106 | </g:form> |
---|
| 107 | </div> |
---|
| 108 | </body> |
---|
| 109 | </html> |
---|