[118] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[268] | 7 | <title>Edit Section</title> |
---|
[118] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[268] | 11 | <span class="menuButton"><g:link class="list" action="list">Section List</g:link></span> |
---|
| 12 | <span class="menuButton"><g:link class="create" action="create">New Section</g:link></span> |
---|
[118] | 13 | </div> |
---|
| 14 | <div class="body"> |
---|
[268] | 15 | <h1>Edit Section</h1> |
---|
[118] | 16 | <g:if test="${flash.message}"> |
---|
| 17 | <div class="message">${flash.message}</div> |
---|
| 18 | </g:if> |
---|
[268] | 19 | <g:hasErrors bean="${sectionInstance}"> |
---|
[118] | 20 | <div class="errors"> |
---|
[268] | 21 | <g:renderErrors bean="${sectionInstance}" as="list" /> |
---|
[118] | 22 | </div> |
---|
| 23 | </g:hasErrors> |
---|
| 24 | <g:form method="post" > |
---|
[268] | 25 | <input type="hidden" name="id" value="${sectionInstance?.id}" /> |
---|
| 26 | <input type="hidden" name="version" value="${sectionInstance?.version}" /> |
---|
[118] | 27 | <div class="dialog"> |
---|
| 28 | <table> |
---|
| 29 | <tbody> |
---|
| 30 | |
---|
| 31 | <tr class="prop"> |
---|
| 32 | <td valign="top" class="name"> |
---|
[268] | 33 | <label for="name">Name:</label> |
---|
[118] | 34 | </td> |
---|
[268] | 35 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'name','errors')}"> |
---|
| 36 | <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:sectionInstance,field:'name')}"/> |
---|
[118] | 37 | </td> |
---|
| 38 | </tr> |
---|
| 39 | |
---|
| 40 | <tr class="prop"> |
---|
| 41 | <td valign="top" class="name"> |
---|
[268] | 42 | <label for="description">Description:</label> |
---|
[162] | 43 | </td> |
---|
[268] | 44 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'description','errors')}"> |
---|
| 45 | <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:sectionInstance,field:'description')}"/> |
---|
[162] | 46 | </td> |
---|
| 47 | </tr> |
---|
| 48 | |
---|
| 49 | <tr class="prop"> |
---|
| 50 | <td valign="top" class="name"> |
---|
[268] | 51 | <label for="isActive">Is Active:</label> |
---|
[162] | 52 | </td> |
---|
[268] | 53 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'isActive','errors')}"> |
---|
| 54 | <g:checkBox name="isActive" value="${sectionInstance?.isActive}" ></g:checkBox> |
---|
[162] | 55 | </td> |
---|
| 56 | </tr> |
---|
| 57 | |
---|
| 58 | <tr class="prop"> |
---|
| 59 | <td valign="top" class="name"> |
---|
[268] | 60 | <label for="assets">Assets:</label> |
---|
[118] | 61 | </td> |
---|
[268] | 62 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'assets','errors')}"> |
---|
| 63 | |
---|
| 64 | <ul> |
---|
| 65 | <g:each var="a" in="${sectionInstance?.assets?}"> |
---|
| 66 | <li><g:link controller="asset" action="show" id="${a.id}">${a?.encodeAsHTML()}</g:link></li> |
---|
| 67 | </g:each> |
---|
| 68 | </ul> |
---|
| 69 | <g:link controller="asset" params="['section.id':sectionInstance?.id]" action="create">Add Asset</g:link> |
---|
| 70 | |
---|
[118] | 71 | </td> |
---|
| 72 | </tr> |
---|
| 73 | |
---|
| 74 | <tr class="prop"> |
---|
| 75 | <td valign="top" class="name"> |
---|
[268] | 76 | <label for="department">Department:</label> |
---|
[118] | 77 | </td> |
---|
[268] | 78 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'department','errors')}"> |
---|
| 79 | <g:select optionKey="id" from="${Department.list()}" name="department.id" value="${sectionInstance?.department?.id}" ></g:select> |
---|
[118] | 80 | </td> |
---|
| 81 | </tr> |
---|
| 82 | |
---|
| 83 | <tr class="prop"> |
---|
| 84 | <td valign="top" class="name"> |
---|
[122] | 85 | <label for="maintenanceActions">Maintenance Actions:</label> |
---|
[118] | 86 | </td> |
---|
[268] | 87 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'maintenanceActions','errors')}"> |
---|
[122] | 88 | |
---|
| 89 | <ul> |
---|
[268] | 90 | <g:each var="m" in="${sectionInstance?.maintenanceActions?}"> |
---|
[122] | 91 | <li><g:link controller="maintenanceAction" action="show" id="${m.id}">${m?.encodeAsHTML()}</g:link></li> |
---|
| 92 | </g:each> |
---|
| 93 | </ul> |
---|
[268] | 94 | <g:link controller="maintenanceAction" params="['section.id':sectionInstance?.id]" action="create">Add MaintenanceAction</g:link> |
---|
[118] | 95 | |
---|
| 96 | </td> |
---|
| 97 | </tr> |
---|
| 98 | |
---|
| 99 | <tr class="prop"> |
---|
| 100 | <td valign="top" class="name"> |
---|
[268] | 101 | <label for="sectionExtendedAttributes">Section Extended Attributes:</label> |
---|
[118] | 102 | </td> |
---|
[268] | 103 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'sectionExtendedAttributes','errors')}"> |
---|
| 104 | |
---|
| 105 | <ul> |
---|
| 106 | <g:each var="s" in="${sectionInstance?.sectionExtendedAttributes?}"> |
---|
| 107 | <li><g:link controller="sectionExtendedAttribute" action="show" id="${s.id}">${s?.encodeAsHTML()}</g:link></li> |
---|
| 108 | </g:each> |
---|
| 109 | </ul> |
---|
| 110 | <g:link controller="sectionExtendedAttribute" params="['section.id':sectionInstance?.id]" action="create">Add SectionExtendedAttribute</g:link> |
---|
| 111 | |
---|
[118] | 112 | </td> |
---|
| 113 | </tr> |
---|
| 114 | |
---|
[122] | 115 | <tr class="prop"> |
---|
| 116 | <td valign="top" class="name"> |
---|
| 117 | <label for="site">Site:</label> |
---|
| 118 | </td> |
---|
[268] | 119 | <td valign="top" class="value ${hasErrors(bean:sectionInstance,field:'site','errors')}"> |
---|
| 120 | <g:select optionKey="id" from="${Site.list()}" name="site.id" value="${sectionInstance?.site?.id}" ></g:select> |
---|
[122] | 121 | </td> |
---|
| 122 | </tr> |
---|
| 123 | |
---|
[118] | 124 | </tbody> |
---|
| 125 | </table> |
---|
| 126 | </div> |
---|
| 127 | <div class="buttons"> |
---|
| 128 | <span class="button"><g:actionSubmit class="save" value="Update" /></span> |
---|
| 129 | <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> |
---|
| 130 | </div> |
---|
| 131 | </g:form> |
---|
| 132 | </div> |
---|
| 133 | </body> |
---|
| 134 | </html> |
---|